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

#include <string>

namespace mbgl {
namespace util {

std::u16string convertUTF8ToUTF16(const std::string&);
std::string convertUTF16ToUTF8(const std::u16string&);

} // namespace util
} // namespace mbgl