MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / unzGoToFilePos

Function unzGoToFilePos

ZLib/minizip/unzip.c:1362–1373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1360}
1361
1362extern int ZEXPORT unzGoToFilePos(
1363 unzFile file,
1364 unz_file_pos* file_pos)
1365{
1366 unz64_file_pos file_pos64;
1367 if (file_pos == NULL)
1368 return UNZ_PARAMERROR;
1369
1370 file_pos64.pos_in_zip_directory = file_pos->pos_in_zip_directory;
1371 file_pos64.num_of_file = file_pos->num_of_file;
1372 return unzGoToFilePos64(file,&file_pos64);
1373}
1374
1375/*
1376// Unzip Helper Functions - should be here?

Callers

nothing calls this directly

Calls 1

unzGoToFilePos64Function · 0.85

Tested by

no test coverage detected