diff options
Diffstat (limited to 'include/ziparchive/zip_archive.h')
-rw-r--r-- | include/ziparchive/zip_archive.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ziparchive/zip_archive.h b/include/ziparchive/zip_archive.h index ac3d792..1877494 100644 --- a/include/ziparchive/zip_archive.h +++ b/include/ziparchive/zip_archive.h @@ -152,7 +152,10 @@ int32_t StartIteration(ZipArchiveHandle handle, void** cookie_ptr, int32_t Next(void* cookie, ZipEntry* data, ZipEntryName *name); /* - * Uncompress and write an entry to a file descriptor. + * Uncompress and write an entry to an open file identified by |fd|. + * |entry->uncompressed_length| bytes will be written to the file at + * its current offset, and the file will be truncated at the end of + * the uncompressed data. * * Returns 0 on success and negative values on failure. */ |