1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- typedef enum {
- TYPE,
- STORED,
- TABLE,
- LEN,
- DONE,
- BAD
- } inflate_mode;
- struct inflate_state {
-
- unsigned char FAR *window;
-
- unsigned ncode;
- unsigned nlen;
- unsigned ndist;
- unsigned have;
- code FAR *next;
- unsigned short lens[320];
- unsigned short work[288];
- code codes[ENOUGH];
- };
|