https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 98e2633b4a5f373161dbfc9d3d193098f1cd0c49 authored by Eric Fischer on 07 June 2018, 00:47:20 UTC
Use weak pointers for container and parser to avoid reference loops
Tip revision: 98e2633
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