aboutsummaryrefslogtreecommitdiff
path: root/include/NetUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/NetUtils.hpp')
-rw-r--r--include/NetUtils.hpp11
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 &param);
+ std::vector<std::string> extract_urls(const std::string &str);
+} \ No newline at end of file