acl/lib_acl_cpp/include/acl_cpp/stdlib/escape.hpp

11 lines
245 B
C++
Raw Normal View History

#pragma once
2017-06-02 14:47:24 +08:00
#include "../acl_cpp_define.hpp"
2014-11-19 00:25:21 +08:00
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