swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 465645390678c3abb2b62e29072f5fe5742890dc authored by Eric Fischer on 27 February 2021, 00:50:46 UTC
Add encoding details to tippecanoe-decode --stats output
Tip revision: 4656453
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