Revision 82309874059e32fffcfd1c36093fd2f296a378fc authored by Eric Fischer on 22 November 2017, 19:51:18 UTC, committed by Eric Fischer on 22 November 2017, 19:54:25 UTC
1 parent 9964784
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