-- see zlib.h -- */
(file)
| 499 | |
| 500 | /* -- see zlib.h -- */ |
| 501 | z_off_t ZEXPORT gzoffset(file) |
| 502 | gzFile file; |
| 503 | { |
| 504 | z_off64_t ret; |
| 505 | |
| 506 | ret = gzoffset64(file); |
| 507 | return ret == (z_off_t)ret ? (z_off_t)ret : -1; |
| 508 | } |
| 509 | |
| 510 | /* -- see zlib.h -- */ |
| 511 | int ZEXPORT gzeof(file) |
nothing calls this directly
no test coverage detected