acl/lib_acl/include/code/acl_htmlcode.h

22 lines
411 B
C
Raw Normal View History

#ifndef ACL_HTMLCODE_INCLUDE_H
2014-11-19 00:25:21 +08:00
#define ACL_HTMLCODE_INCLUDE_H
#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
#endif /* ACL_CLIENT_ONLY */
2014-11-19 00:25:21 +08:00
#endif