Just like stdio ftell(), except works on a CFILE
| 624 | |
| 625 | // Just like stdio ftell(), except works on a CFILE |
| 626 | long cftell(CFILE *cfp) { return cfp->position; } |
| 627 | |
| 628 | // Returns true if at EOF |
| 629 | int cfeof(CFILE *cfp) { return (cfp->position >= cfp->size); } |
no outgoing calls
no test coverage detected