https://github.com/mapbox/tippecanoe
Raw File
Tip revision: dae2c652bc17a8a79516573abcd9b5d63e0694f5 authored by Eric Fischer on 07 January 2020, 23:36:47 UTC
Pass null attribute values through into tilestats
Tip revision: dae2c65
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);
std::string format_commandline(int argc, char **argv);

#endif
back to top