Revision a45fec573dc5c9c3bff0ff3235fbe436ef133b38 authored by Pratik Yadav on 28 March 2018, 10:11:51 UTC, committed by GitHub on 28 March 2018, 10:11:51 UTC
1 parent 3cea125
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