mirror of
https://git.wuffs.org/MWCC
synced 2025-07-05 23:15:54 +00:00
10 lines
248 B
C
10 lines
248 B
C
#ifndef COMPILER_UNMANGLE_H
|
|
#define COMPILER_UNMANGLE_H
|
|
|
|
#include "compiler/common.h"
|
|
|
|
extern void MWUnmangleClassName(const char *input, char *output, size_t maxLen);
|
|
extern void MWUnmangle(const char *input, char *output, size_t maxLen);
|
|
|
|
#endif
|