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

Function gzseek

freebsd/contrib/zstd/zlibWrapper/gzlib.c:446–455  ·  view source on GitHub ↗

-- see zlib.h -- */

(file, offset, whence)

Source from the content-addressed store, hash-verified

444
445/* -- see zlib.h -- */
446z_off_t ZEXPORT gzseek(file, offset, whence)
447 gzFile file;
448 z_off_t offset;
449 int whence;
450{
451 z_off64_t ret;
452
453 ret = gzseek64(file, (z_off64_t)offset, whence);
454 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
455}
456
457/* -- see zlib.h -- */
458z_off64_t ZEXPORT gztell64(file)

Callers 2

test_gzioFunction · 0.50
test_gzioFunction · 0.50

Calls 1

gzseek64Function · 0.70

Tested by 2

test_gzioFunction · 0.40
test_gzioFunction · 0.40