| 558 | } |
| 559 | |
| 560 | bool CScriptFile::IsEOF() const |
| 561 | { |
| 562 | if( file == 0 ) |
| 563 | return true; |
| 564 | |
| 565 | return feof(file) ? true : false; |
| 566 | } |
| 567 | |
| 568 | #if AS_WRITE_OPS == 1 |
| 569 | int CScriptFile::WriteString(const std::string &str) |
no outgoing calls
no test coverage detected