https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 610afc23329d3674f5bb2561bfd027653d3004a9 authored by Eric Fischer on 16 January 2019, 21:08:54 UTC
Merge pull request #702 from mapbox/minzoom-0
Tip revision: 610afc2
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