mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
d1a0e495ce
Also fixes a place in the Makefile that accidentally still used CFLAGS instead of CXXFLAGS
12 lines
266 B
C++
12 lines
266 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);
|
|
int integer_zoom(std::string where, std::string text);
|
|
|
|
#endif
|