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

Function unzGoToFilePos

common/minizip/unzip.c:1360–1371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

unzGoToFilePos64Function · 0.85

Tested by

no test coverage detected