https://github.com/mapbox/tippecanoe
Raw File
Tip revision: e99f39b162d0db4fcce309908003b4f8d6380f9d authored by Eric Fischer on 14 August 2017, 23:27:50 UTC
More progress on reading vtzero
Tip revision: e99f39b
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