#ifndef UTF8_H #define UTF8_H #include #include #include size_t utf8_codepoint_size(uint8_t text); int utf8_scan (std::string_view s, std::function func); #endif