| 431 | |
| 432 | |
| 433 | ILint ILAPIENTRY iGetcFile(void) |
| 434 | { |
| 435 | if (!UseCache) { |
| 436 | return GetcProc(FileRead); |
| 437 | } |
| 438 | if (CachePos >= CacheSize) { |
| 439 | iPreCache(CacheSize); |
| 440 | } |
| 441 | |
| 442 | CacheBytesRead++; |
| 443 | return Cache[CachePos++]; |
| 444 | } |
| 445 | |
| 446 | |
| 447 | ILint ILAPIENTRY iGetcLump(void) |
nothing calls this directly
no test coverage detected