aboutsummaryrefslogtreecommitdiff
path: root/include/NetUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/NetUtils.hpp')
-rw-r--r--include/NetUtils.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/NetUtils.hpp b/include/NetUtils.hpp
index 4770fb4..e719c82 100644
--- a/include/NetUtils.hpp
+++ b/include/NetUtils.hpp
@@ -4,8 +4,15 @@
#include <vector>
namespace QuickMedia {
+ struct Range {
+ size_t start;
+ size_t length;
+ };
+
void html_escape_sequences(std::string &str);
void html_unescape_sequences(std::string &str);
std::string url_param_encode(const std::string &param);
- void extract_urls(const std::string &str, std::vector<std::string> &urls);
+ std::vector<Range> extract_urls(const std::string &str);
+ std::vector<std::string> ranges_get_strings(const std::string &str, const std::vector<Range> &ranges);
+ void convert_utf8_to_utf32_ranges(const std::string &str, std::vector<Range> &ranges);
} \ No newline at end of file