AP05/escape_unescape/escape_unescape.h

15 lines
205 B
C
Raw Permalink Normal View History

2025-04-06 06:41:47 +00:00
#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