https://github.com/mapbox/tippecanoe
Raw File
Tip revision: cd47a398fa219d2b85443b07dac1681e27c5c1c7 authored by Eric Fischer on 13 October 2017, 19:32:32 UTC
Merge pull request #477 from mapbox/empty-attribute-keys
Tip revision: cd47a39
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