summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extract/src/zip.h')
-rw-r--r--extract/src/zip.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/extract/src/zip.h b/extract/src/zip.h
index 570f475a..da27558c 100644
--- a/extract/src/zip.h
+++ b/extract/src/zip.h
@@ -10,7 +10,7 @@
/* Support for creating zip file content.
-Content is uncompressed.
+Content is compressed using deflate.
Unless otherwise stated, all functions return 0 on success or -1 with errno
set.
@@ -23,6 +23,8 @@ typedef struct extract_zip_t extract_zip_t;
int extract_zip_open(extract_buffer_t* buffer, extract_zip_t** o_zip);
/* Creates an extract_zip_t that writes to specified buffer.
+We reuse <buffer>'s allocator for zlib's allocation needs.
+
buffer:
Destination for zip file content.
o_zip: