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

Function zipOpen2

common/minizip/zip.c:920–930  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

918}
919
920extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def)
921{
922 if (pzlib_filefunc32_def != NULL)
923 {
924 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
925 fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
926 return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
927 }
928 else
929 return zipOpen3(pathname, append, globalcomment, NULL);
930}
931
932extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def)
933{

Callers

nothing calls this directly

Calls 2

zipOpen3Function · 0.85

Tested by

no test coverage detected