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