GCC __cxa_demangle 的 C 等价物?

C equivalent for __cxa_demangle for gcc?

我过去使用过以下函数来分解 c++ 符号,事实证明它非常有用:

char* __cxa_demangle(const char* __mangled_name, char* __output_buffer, size_t* __length, int* __status);

现在我开发一个使用 gcc 的 C 应用程序,但不能使用 __cxa_demangle,因为它是一个 C 程序(它仅适用于 C++ 编译器 g++),在 C++ 中我通常会调用如下:

abi::__cxa_demangle(mangled.c_str(), NULL, 0, 0);

有人知道如何在 C 中实现相同的功能吗?

在源代码的注释中回答我自己的问题:

   *  @note The same demangling functionality is available via
   *  libiberty (@c <libiberty/demangle.h> and @c libiberty.a) in GCC
   *  3.1 and later, but that requires explicit installation (@c
   *  --enable-install-libiberty) and uses a different API, although
   *  the ABI is unchanged.
   */
  char*
  __cxa_demangle(const char* __mangled_name, char* __output_buffer,
         size_t* __length, int* __status);