blob: 85ac37a7de2067dfc1bdfbe32b9c1a42ac75099f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <string>
namespace mbgl {
namespace platform {
// Non-locale-aware diacritic folding based on nunicode
// Used as a fallback when locale-aware comparisons aren't available
std::string unaccent(const std::string &string);
} // namespace platform
} // namespace mbgl
|