MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / gzoffset

Function gzoffset

ZLib/gzlib.c:501–508  ·  view source on GitHub ↗

-- see zlib.h -- */

(file)

Source from the content-addressed store, hash-verified

499
500/* -- see zlib.h -- */
501z_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 -- */
511int ZEXPORT gzeof(file)

Callers

nothing calls this directly

Calls 1

gzoffset64Function · 0.85

Tested by

no test coverage detected