aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inflate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/inflate.h b/inflate.h
index 95f4986..fbc9a67 100644
--- a/inflate.h
+++ b/inflate.h
@@ -77,7 +77,8 @@ typedef enum {
77 CHECK -> LENGTH -> DONE 77 CHECK -> LENGTH -> DONE
78 */ 78 */
79 79
80/* state maintained between inflate() calls. Approximately 10K bytes. */ 80/* State maintained between inflate() calls -- approximately 7K bytes, not
81 inlcuding the allocated sliding window, which is up to 32K bytes. */
81struct inflate_state { 82struct inflate_state {
82 inflate_mode mode; /* current inflate mode */ 83 inflate_mode mode; /* current inflate mode */
83 int last; /* true if processing last block */ 84 int last; /* true if processing last block */