mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
cc05b877a2
first commit acl to github
19 lines
333 B
C
19 lines
333 B
C
#ifndef __UNESCAPE_INCLUDE_H__
|
|
#define __UNESCAPE_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
#include "dict.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DICT_API ACL_VSTRING *unescape(ACL_VSTRING *result, const char *data);
|
|
DICT_API ACL_VSTRING *escape(ACL_VSTRING *result, const char *data, ssize_t len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|