MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / LowAscii

Function LowAscii

Libraries/unrar/strfn.cpp:242–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240
241
242bool LowAscii(const char *Str)
243{
244 for (size_t I=0;Str[I]!=0;I++)
245 if (/*(byte)Str[I]<32 || */(byte)Str[I]>127)
246 return false;
247 return true;
248}
249
250
251bool LowAscii(const wchar *Str)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected