https://github.com/mapbox/tippecanoe
Raw File
Tip revision: a383f5c725f9f2d607c94fcc71a02a9c3448748a authored by Eric Fischer on 18 April 2018, 17:48:13 UTC
Use an exit status of 100 if some but not all zoom levels succeeded
Tip revision: a383f5c
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