| 1358 | } |
| 1359 | |
| 1360 | extern 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? |
nothing calls this directly
no test coverage detected