summaryrefslogtreecommitdiff
path: root/infutil.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:08:28 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:08:28 -0700
commit6b834a58bdef976383cff6e2a83f353e668a9cf1 (patch)
tree5527def57f9d6eac4f3e709c10b9fd89905f2445 /infutil.h
parentbdde4e09d21edff02ea5093b7f6eccbf166b272f (diff)
downloadzlib-0.93.tar.gz
zlib-0.93.tar.bz2
zlib-0.93.zip
zlib 0.93v0.93
Diffstat (limited to '')
-rw-r--r--infutil.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/infutil.h b/infutil.h
index f234e9b..b5639d6 100644
--- a/infutil.h
+++ b/infutil.h
@@ -35,8 +35,11 @@ struct inflate_blocks_state {
35 uInt bb; /* bit length tree depth */ 35 uInt bb; /* bit length tree depth */
36 inflate_huft *tb; /* bit length decoding tree */ 36 inflate_huft *tb; /* bit length decoding tree */
37 } trees; /* if DTREE, decoding info for trees */ 37 } trees; /* if DTREE, decoding info for trees */
38 struct inflate_codes_state 38 struct {
39 *codes; /* if CODES, current state */ 39 inflate_huft *tl, *td; /* trees to free */
40 struct inflate_codes_state
41 *codes;
42 } decode; /* if CODES, current state */
40 } sub; /* submode */ 43 } sub; /* submode */
41 uInt last; /* true if this block is the last block */ 44 uInt last; /* true if this block is the last block */
42 45