MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / zipOpen2

Function zipOpen2

extlibs/minizip/src/zip.c:910–919  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

908}
909
910extern zipFile ZEXPORT zipOpen2(const char* pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def)
911{
912 if (pzlib_filefunc32_def != NULL)
913 {
914 zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
915 fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill, pzlib_filefunc32_def);
916 return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
917 }
918 return zipOpen3(pathname, append, globalcomment, NULL);
919}
920
921extern zipFile ZEXPORT zipOpen2_64(const void* pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def)
922{

Callers

nothing calls this directly

Calls 2

zipOpen3Function · 0.85

Tested by

no test coverage detected