aboutsummaryrefslogtreecommitdiff
path: root/inftrees.c
diff options
context:
space:
mode:
Diffstat (limited to 'inftrees.c')
-rw-r--r--inftrees.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/inftrees.c b/inftrees.c
index 0178ffa..afc4c42 100644
--- a/inftrees.c
+++ b/inftrees.c
@@ -29,14 +29,9 @@ const char inflate_copyright[] =
29 table index bits. It will differ if the request is greater than the 29 table index bits. It will differ if the request is greater than the
30 longest code or if it is less than the shortest code. 30 longest code or if it is less than the shortest code.
31 */ 31 */
32int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) 32int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
33codetype type; 33 unsigned codes, code FAR * FAR *table,
34unsigned short FAR *lens; 34 unsigned FAR *bits, unsigned short FAR *work) {
35unsigned codes;
36code FAR * FAR *table;
37unsigned FAR *bits;
38unsigned short FAR *work;
39{
40 unsigned len; /* a code's length in bits */ 35 unsigned len; /* a code's length in bits */
41 unsigned sym; /* index of code symbols */ 36 unsigned sym; /* index of code symbols */
42 unsigned min, max; /* minimum and maximum code lengths */ 37 unsigned min, max; /* minimum and maximum code lengths */