aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zlib.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/zlib.h b/zlib.h
index c055ecb..1a57127 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1549,6 +1549,11 @@ ZEXTERN int ZEXPORT gzungetc(int c, gzFile file);
1549 output buffer size of pushed characters is allowed. (See gzbuffer above.) 1549 output buffer size of pushed characters is allowed. (See gzbuffer above.)
1550 The pushed character will be discarded if the stream is repositioned with 1550 The pushed character will be discarded if the stream is repositioned with
1551 gzseek() or gzrewind(). 1551 gzseek() or gzrewind().
1552
1553 gzungetc(-1, file) will force any pending seek to execute. Then gztell()
1554 will report the position, even if the requested seek reached end of file.
1555 This can be used to determine the number of uncompressed bytes in a gzip
1556 file without having to read it into a buffer.
1552*/ 1557*/
1553 1558
1554ZEXTERN int ZEXPORT gzflush(gzFile file, int flush); 1559ZEXTERN int ZEXPORT gzflush(gzFile file, int flush);