| 391 | } |
| 392 | |
| 393 | void IReader::skip_stringZ() |
| 394 | { |
| 395 | char* src = (char*)data; |
| 396 | while ((src[Pos] != 0) && (!eof())) |
| 397 | Pos++; |
| 398 | |
| 399 | Pos++; |
| 400 | }; |
| 401 | |
| 402 | //--------------------------------------------------- |
| 403 | // temp stream |
no outgoing calls
no test coverage detected