mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-18 02:04:28 +00:00
17 lines
353 B
C++
17 lines
353 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <cxxabi.h>
|
|
|
|
int main(void)
|
|
{
|
|
size_t len = 256;
|
|
char *output = (char*)malloc(len);
|
|
int status;
|
|
|
|
output = abi::__cxa_demangle("FieldName__9ClassNameFd", output, &len, &status);
|
|
|
|
printf("demangled symbol: {%s}\n", output);
|
|
|
|
return 0;
|
|
}
|