acl/lib_acl/include/code/acl_htmlcode.h
2014-11-19 00:25:21 +08:00

19 lines
348 B
C

#ifndef ACL_HTMLCODE_INCLUDE_H
#define ACL_HTMLCODE_INCLUDE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "stdlib/acl_define.h"
#include "stdlib/acl_vstring.h"
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