diff options
| author | 2013-09-17 06:47:03 +0000 | |
|---|---|---|
| committer | 2013-09-17 06:47:03 +0000 | |
| commit | 96aa5e1c086b4927456dc88b925d8ec112f0482e (patch) | |
| tree | f59d136c51d4a065f39e3ab0d73981526c4d156b /src/lib/zlib/inftrees.h | |
| parent | a7d12daf5b4c3374e8ad47a003ac7fff73d5c8fc (diff) | |
Cleanups and version bumpmame0150
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)); |
