]> git.ipfire.org Git - people/arne_f/kernel.git/blob - tools/build/feature/test-cplus-demangle.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[people/arne_f/kernel.git] / tools / build / feature / test-cplus-demangle.c
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 }