diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/NetUtils.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/NetUtils.hpp b/include/NetUtils.hpp new file mode 100644 index 0000000..84b9d18 --- /dev/null +++ b/include/NetUtils.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include <string> +#include <vector> + +namespace QuickMedia { + void html_escape_sequences(std::string &str); + void html_unescape_sequences(std::string &str); + std::string url_param_encode(const std::string ¶m); + std::vector<std::string> extract_urls(const std::string &str); +}
\ No newline at end of file |