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

Function unzOpen2

lib/QuaZip/quazip/unzip.c:769–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

767
768
769extern unzFile ZEXPORT unzOpen2 (voidpf file,
770 zlib_filefunc_def* pzlib_filefunc32_def)
771{
772 if (pzlib_filefunc32_def != NULL)
773 {
774 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
775 fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
776 return unzOpenInternal(file, &zlib_filefunc64_32_def_fill, 0, UNZ_DEFAULT_FLAGS);
777 }
778 return unzOpenInternal(file, NULL, 0, UNZ_DEFAULT_FLAGS);
779}
780
781extern unzFile ZEXPORT unzOpen2_64 (voidpf file,
782 zlib_filefunc64_def* pzlib_filefunc_def)

Callers 1

openMethod · 0.85

Calls 2

unzOpenInternalFunction · 0.85

Tested by

no test coverage detected