aboutsummaryrefslogtreecommitdiff
path: root/include/NetUtils.hpp
blob: 4770fb452f800277c58fa7ba0a33e698baee6db3 (plain)
1
2
3
4
5
6
7
8
9
10
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);
    void extract_urls(const std::string &str, std::vector<std::string> &urls);
}