root/tools/build/feature/test-libbfd.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 // SPDX-License-Identifier: GPL-2.0
   2 #include <bfd.h>
   3 
   4 extern int printf(const char *format, ...);
   5 
   6 int main(void)
   7 {
   8         char symbol[4096] = "FieldName__9ClassNameFd";
   9         char *tmp;
  10 
  11         tmp = bfd_demangle(0, symbol, 0);
  12 
  13         printf("demangled symbol: {%s}\n", tmp);
  14 
  15         return 0;
  16 }

/* [<][>][^][v][top][bottom][index][help] */