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

Function is_ascii_alpha

src/models/miotts/session.cpp:257–259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255};
256
257bool is_ascii_alpha(unsigned char ch) {
258 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
259}
260
261bool is_ascii_alnum_or_apostrophe(unsigned char ch) {
262 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9') || ch == '\'';

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected