diff options
Diffstat (limited to 'src/tgbot/tools/StringTools.h')
-rw-r--r-- | src/tgbot/tools/StringTools.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tgbot/tools/StringTools.h b/src/tgbot/tools/StringTools.h index 0c94338..37ab858 100644 --- a/src/tgbot/tools/StringTools.h +++ b/src/tgbot/tools/StringTools.h @@ -34,6 +34,7 @@ bool endsWith(const std::string& str1, const std::string& str2); void split(const std::string& str, char delimiter, std::vector<std::string>& dest); std::string generateRandomString(size_t length); std::string urlEncode(const std::string& value); +std::string urlDecode(const std::string& value); inline std::vector<std::string> split(const std::string& str, char delimiter) { std::vector<std::string> result; |