mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-24 18:50:44 +00:00
12 lines
268 B
C++
12 lines
268 B
C++
#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);
|
|
void aprintf(std::string *buf, const char *format, ...);
|
|
|
|
#endif
|