MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / unzGoToFilePos

Function unzGoToFilePos

lib/QuaZip/quazip/unzip.c:1378–1389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1376}
1377
1378extern int ZEXPORT unzGoToFilePos(
1379 unzFile file,
1380 unz_file_pos* file_pos)
1381{
1382 unz64_file_pos file_pos64;
1383 if (file_pos == NULL)
1384 return UNZ_PARAMERROR;
1385
1386 file_pos64.pos_in_zip_directory = file_pos->pos_in_zip_directory;
1387 file_pos64.num_of_file = file_pos->num_of_file;
1388 return unzGoToFilePos64(file,&file_pos64);
1389}
1390
1391/* Unzip Helper Functions - should be here? */
1392/*///////////////////////////////////////// */

Callers

nothing calls this directly

Calls 1

unzGoToFilePos64Function · 0.85

Tested by

no test coverage detected