Revision e000bcc261e858b93892c471d732c5aef4c4cf3f authored by Eric Fischer on 08 September 2017, 17:16:19 UTC, committed by GitHub on 08 September 2017, 17:16:19 UTC
Limit the depth of the search in the string pool.
2 parent s 2518f23 + a2d12f1
Raw File
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