https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 6db02e8457937e5ef895fe29ea23d0d94e835273 authored by Eric Fischer on 14 May 2018, 22:08:51 UTC
Merge pull request #568 from mapbox/gzip-input
Tip revision: 6db02e8
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