Added XML parser/writer

This commit is contained in:
MihailRis
2024-02-01 02:01:04 +03:00
parent bfe2e2557b
commit 1f11fa8fea
6 changed files with 527 additions and 0 deletions
+2
View File
@@ -26,6 +26,8 @@ namespace util {
extern std::string base64_encode(const ubyte* data, size_t size);
extern std::vector<ubyte> base64_decode(const char* str, size_t size);
extern std::vector<ubyte> base64_decode(const std::string& str);
extern int replaceAll(std::string& str, const std::string& from, const std::string& to);
}
#endif // UTIL_STRINGUTIL_H_