MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / lowercase_ascii

Function lowercase_ascii

src/models/miotts/session.cpp:265–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263}
264
265std::string lowercase_ascii(std::string value) {
266 for (char & ch : value) {
267 ch = static_cast<char>(std::tolower(static_cast<unsigned char>(ch)));
268 }
269 return value;
270}
271
272std::vector<uint32_t> utf8_codepoints(std::string_view text, std::string_view label) {
273 std::vector<uint32_t> out;

Callers 2

normalize_for_werFunction · 0.70
normalize_for_cerFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected