https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 58ab638f20b13a00b05b579e8f8f4783ebdbf9a1 authored by Eric Fischer on 18 June 2018, 16:41:26 UTC
Debugging code to find where I am leaving empty linetos
Tip revision: 58ab638
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);

#endif
back to top