| 344 | //========================================================================== |
| 345 | |
| 346 | bool FScanner::isText() |
| 347 | { |
| 348 | for(unsigned int i=0;i<ScriptBuffer.Len();i++) |
| 349 | { |
| 350 | int c = ScriptBuffer[i]; |
| 351 | if (c < ' ' && c != '\n' && c != '\r' && c != '\t') return false; |
| 352 | } |
| 353 | return true; |
| 354 | } |
| 355 | |
| 356 | //========================================================================== |
| 357 | // |
no test coverage detected