https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 370252731aec4718aa37d40d6ab285776a339d50 authored by Eric Fischer on 29 May 2019, 01:22:28 UTC
Print details of the feature when Wagyu throws an exception
Tip revision: 3702527
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