Revision bd2423a5ea67a5017f1394d9ce8ce016324a8b18 authored by Eric Fischer on 02 November 2018, 22:21:52 UTC, committed by Eric Fischer on 02 November 2018, 22:21:52 UTC
1 parent 53de8a2
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);
int integer_zoom(std::string where, std::string text);

#endif
back to top