https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 945d80400b6c3bdbd73606a19351cb45c52e707d authored by Eric Fischer on 02 March 2019, 00:22:00 UTC
Merge pull request #725 from mapbox/geobuf-multilinestring
Tip revision: 945d804
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);
int integer_zoom(std::string where, std::string text);

#endif
back to top