mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-14 22:26:42 +00:00
13 lines
315 B
C++
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
|