https://github.com/mapbox/tippecanoe
Raw File
Tip revision: ca028dd1ccd6756050a0b226609e0a790b1b60b1 authored by Eric Fischer on 23 November 2017, 01:53:25 UTC
Merge pull request #495 from mapbox/bare-geom-crash
Tip revision: ca028dd
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