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

Function unzOpen2

common/minizip/unzip.c:765–776  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

763
764
765extern unzFile ZEXPORT unzOpen2 (const char *path,
766 zlib_filefunc_def* pzlib_filefunc32_def)
767{
768 if (pzlib_filefunc32_def != NULL)
769 {
770 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
771 fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
772 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0);
773 }
774 else
775 return unzOpenInternal(path, NULL, 0);
776}
777
778extern unzFile ZEXPORT unzOpen2_64 (const void *path,
779 zlib_filefunc64_def* pzlib_filefunc_def)

Callers

nothing calls this directly

Calls 2

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected