summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/zlib/inftrees.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/zlib/inftrees.h')
-rw-r--r--src/lib/zlib/inftrees.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/zlib/inftrees.h b/src/lib/zlib/inftrees.h
index baa53a0b1a1..14cf2cf6105 100644
--- a/src/lib/zlib/inftrees.h
+++ b/src/lib/zlib/inftrees.h
@@ -22,9 +22,9 @@
of a literal, the base length or distance, or the offset from
the current table to the next table. Each entry is four bytes. */
typedef struct {
- unsigned char op; /* operation, extra bits, table bits */
- unsigned char bits; /* bits in this part of the code */
- unsigned short val; /* offset in table or code value */
+ unsigned char op; /* operation, extra bits, table bits */
+ unsigned char bits; /* bits in this part of the code */
+ unsigned short val; /* offset in table or code value */
} code;
/* op values as set by inflate_table():
@@ -52,11 +52,11 @@ typedef struct {
/* Type of code to build for inflate_table() */
typedef enum {
- CODES,
- LENS,
- DISTS
+ CODES,
+ LENS,
+ DISTS
} codetype;
int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
- unsigned codes, code FAR * FAR *table,
- unsigned FAR *bits, unsigned short FAR *work));
+ unsigned codes, code FAR * FAR *table,
+ unsigned FAR *bits, unsigned short FAR *work));