Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/build/feature/test-libbfd.c
26288 views
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
}
17
18