https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 066934a666c6824c14d04a1ba754380ec043cc20 authored by Eric Fischer on 09 April 2018, 16:24:25 UTC
Merge pull request #553 from mapbox/zoom-filter
Tip revision: 066934a
text.hpp
#ifndef TEXT_HPP
#define TEXT_HPP

#include <string>

std::string check_utf8(std::string text);
const char *utf8_next(const char *s, long *c);
std::string truncate16(std::string const &s, size_t runes);

#endif
back to top