swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: b6b35102c75f451b1ca85e460568f22af781c297 authored by Eric Fischer on 11 April 2018, 00:14:26 UTC
Check in test file of small grid
Tip revision: b6b3510
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);
void aprintf(std::string *buf, const char *format, ...);

#endif
back to top