mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 21:09:19 +08:00
11 lines
242 B
C++
11 lines
242 B
C++
#pragma once
|
|
#include "../acl_cpp_define.hpp"
|
|
|
|
namespace acl {
|
|
class string;
|
|
|
|
ACL_CPP_API void escape(const char* in, size_t len, string& out);
|
|
ACL_CPP_API bool unescape(const char* in, size_t len, string& out);
|
|
|
|
} // namespace acl
|