https://github.com/mapbox/tippecanoe
Raw File
Tip revision: d3ae48534e182936423dbef93f503bc054065744 authored by Eric Fischer on 23 October 2018, 18:59:28 UTC
Merge pull request #650 from mapbox/filter-crash
Tip revision: d3ae485
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);
int integer_zoom(std::string where, std::string text);

#endif
back to top