root/tools/build/feature/test-cplus-demangle.c

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

DEFINITIONS

This source file includes following definitions.
  1. main

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

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