https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 255f795c915d4eb504f93a0e52b13c88045f39f9 authored by Eric Fischer on 19 December 2018, 01:31:51 UTC
Merge pull request #691 from mapbox/detail-limit
Tip revision: 255f795
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