summaryrefslogtreecommitdiff
path: root/src/mbgl/util/url.hpp
blob: 2d18f7476aa6580f85f0d5d8c8f95935cbcb20cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

namespace mbgl {

namespace util {

std::string percentEncode(const std::string&);
std::string percentDecode(const std::string&);
bool isURL(const std::string&);

} // namespace util
} // namespace mbgl