MCPcopy Create free account
hub / github.com/F-Stack/f-stack / gztell

Function gztell

freebsd/contrib/zlib/gzlib.c:475–482  ·  view source on GitHub ↗

-- see zlib.h -- */

(file)

Source from the content-addressed store, hash-verified

473
474/* -- see zlib.h -- */
475z_off_t ZEXPORT gztell(file)
476 gzFile file;
477{
478 z_off64_t ret;
479
480 ret = gztell64(file);
481 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
482}
483
484/* -- see zlib.h -- */
485z_off64_t ZEXPORT gzoffset64(file)

Callers 1

test_gzioFunction · 0.50

Calls 1

gztell64Function · 0.70

Tested by 1

test_gzioFunction · 0.40