2019-07-28 10:31:56 +08:00
|
|
|
#ifndef ACL_HTMLCODE_INCLUDE_H
|
2014-11-19 00:25:21 +08:00
|
|
|
#define ACL_HTMLCODE_INCLUDE_H
|
|
|
|
|
2019-05-18 21:19:21 +08:00
|
|
|
#ifndef ACL_CLIENT_ONLY
|
|
|
|
|
2014-11-19 00:25:21 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-06-02 14:47:24 +08:00
|
|
|
#include "../stdlib/acl_define.h"
|
|
|
|
#include "../stdlib/acl_vstring.h"
|
2014-11-19 00:25:21 +08:00
|
|
|
|
|
|
|
ACL_API int acl_html_encode(const char *in, ACL_VSTRING *out);
|
|
|
|
ACL_API int acl_html_decode(const char *in, ACL_VSTRING *out);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-18 21:19:21 +08:00
|
|
|
#endif /* ACL_CLIENT_ONLY */
|
2014-11-19 00:25:21 +08:00
|
|
|
#endif
|