aboutsummaryrefslogtreecommitdiff
path: root/include/NetUtils.hpp
blob: 84b9d184074b17c65b2b9e545da69a8a62289d5b (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);
    std::vector<std::string> extract_urls(const std::string &str);
}