1 #ifndef RUST_DEMANGLE_H_ 2 #define RUST_DEMANGLE_H_ 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 // For size_t 9 #include <stddef.h> 10 11 char *rustc_demangle(const char *mangled, char *out, size_t *len, int *status); 12 13 #ifdef __cplusplus 14 } 15 #endif 16 17 #endif // RUSTC_DEMANGLE_H_ 18