1 // SPDX-License-Identifier: GPL-2.0 1 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("FieldNam 13 14 printf("demangled symbol: {%s}\n", out 15 16 return 0; 17 } 18
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.