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

Function unzGetGlobalInfo64

common/minizip/unzip.c:828–836  ·  view source on GitHub ↗

Write info about the ZipFile in the *pglobal_info structure. No preparation of the structure is needed return UNZ_OK if there is no problem. */

Source from the content-addressed store, hash-verified

826 No preparation of the structure is needed
827 return UNZ_OK if there is no problem. */
828extern int ZEXPORT unzGetGlobalInfo64 (unzFile file, unz_global_info64* pglobal_info)
829{
830 unz64_s* s;
831 if (file==NULL)
832 return UNZ_PARAMERROR;
833 s=(unz64_s*)file;
834 *pglobal_info=s->gi;
835 return UNZ_OK;
836}
837
838extern int ZEXPORT unzGetGlobalInfo (unzFile file, unz_global_info* pglobal_info32)
839{

Callers 2

do_listFunction · 0.85
do_extractFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected