| 240 | |
| 241 | |
| 242 | bool 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 | |
| 251 | bool LowAscii(const wchar *Str) |
nothing calls this directly
no outgoing calls
no test coverage detected