mirror of
http://180.163.74.83:13000/zhangzhenghao/AP05.git
synced 2025-12-12 15:04:29 +00:00
15 lines
205 B
C
Executable File
15 lines
205 B
C
Executable File
#ifndef _ESCAPE_UNESCAPE_H_
|
|
#define _ESCAPE_UNESCAPE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const char *unescape(const char *in, char *out, size_t outsiz);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|