MCPcopy Create free account
hub / github.com/DreamSourceLab/DSView / unzOpen2_64

Function unzOpen2_64

common/minizip/unzip.c:778–791  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

776}
777
778extern unzFile ZEXPORT unzOpen2_64 (const void *path,
779 zlib_filefunc64_def* pzlib_filefunc_def)
780{
781 if (pzlib_filefunc_def != NULL)
782 {
783 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
784 zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
785 zlib_filefunc64_32_def_fill.ztell32_file = NULL;
786 zlib_filefunc64_32_def_fill.zseek32_file = NULL;
787 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1);
788 }
789 else
790 return unzOpenInternal(path, NULL, 1);
791}
792
793extern unzFile ZEXPORT unzOpen (const char *path)
794{

Callers 1

mainFunction · 0.85

Calls 1

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected