Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/build/feature/test-cxa-demangle.cpp
26288 views
1
// SPDX-License-Identifier: GPL-2.0
2
#include <stdio.h>
3
#include <stdlib.h>
4
#include <cxxabi.h>
5
6
int main(void)
7
{
8
size_t len = 256;
9
char *output = (char*)malloc(len);
10
int status;
11
12
output = abi::__cxa_demangle("FieldName__9ClassNameFd", output, &len, &status);
13
14
printf("demangled symbol: {%s}\n", output);
15
16
return 0;
17
}
18
19