swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: ca6384fbbc3e61890b77d9192b2b13756f4d8685 authored by Eric Fischer on 22 March 2018, 23:05:14 UTC
Merge branch 'master' into vtzero3
Tip revision: ca6384f
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