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

Function lower_ascii

app/server/http.cpp:37–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35namespace minitts::server {
36namespace {
37
38std::string lower_ascii(std::string value) {
39 for (char & ch : value) {
40 ch = static_cast<char>(std::tolower(static_cast<unsigned char>(ch)));
41 }
42 return value;
43}
44
45std::string trim(std::string value) {

Callers 1

read_http_requestFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected