Returns the length of the specified file Parameters: cfp - the file pointer returned by cfopen()
| 533 | // Returns the length of the specified file |
| 534 | // Parameters: cfp - the file pointer returned by cfopen() |
| 535 | uint32_t cfilelength(CFILE *cfp) { return cfp->size; } |
| 536 | |
| 537 | // Closes an open CFILE. |
| 538 | // Parameters: cfile - the file pointer returned by cfopen() |
no outgoing calls