MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / unzOpen2_64

Function unzOpen2_64

lib/QuaZip/quazip/unzip.c:781–793  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

779}
780
781extern unzFile ZEXPORT unzOpen2_64 (voidpf file,
782 zlib_filefunc64_def* pzlib_filefunc_def)
783{
784 if (pzlib_filefunc_def != NULL)
785 {
786 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
787 zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
788 zlib_filefunc64_32_def_fill.ztell32_file = NULL;
789 zlib_filefunc64_32_def_fill.zseek32_file = NULL;
790 return unzOpenInternal(file, &zlib_filefunc64_32_def_fill, 1, UNZ_DEFAULT_FLAGS);
791 }
792 return unzOpenInternal(file, NULL, 1, UNZ_DEFAULT_FLAGS);
793}
794
795extern unzFile ZEXPORT unzOpen (voidpf file)
796{

Callers

nothing calls this directly

Calls 1

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected