diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/lib/zlib/inftrees.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/lib/zlib/inftrees.h')
-rw-r--r-- | src/lib/zlib/inftrees.h | 16 |
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)); |