tippecanoe/text.hpp
2018-08-10 17:16:58 -07:00

13 lines
315 B
C++

#ifndef TEXT_HPP
#define TEXT_HPP
#include <string>
std::string check_utf8(std::string const &text);
const char *utf8_next(const char *s, long *c);
std::string truncate16(std::string const &s, size_t runes);
void to_utf8(unsigned c, std::string &s);
int integer_zoom(std::string where, std::string text);
#endif