Revision 1fa797bc17f0b8d4c4a88a85595ca0e9bbd61752 authored by Blake Thompson on 01 October 2020, 19:54:02 UTC, committed by Blake Thompson on 01 October 2020, 19:54:02 UTC
1 parent 62554b6
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);
std::string format_commandline(int argc, char **argv);

#endif
back to top