https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 949468e6f5679b159ee0dba937dddc18b977e942 authored by Eric Fischer on 07 November 2018, 22:45:08 UTC
Merge pull request #658 from mapbox/coerce-feature-ids
Tip revision: 949468e
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