plan9port/src/libflate/zlib.h

12 lines
218 B
C
Raw Normal View History

2003-11-23 18:19:18 +00:00
/*
* zlib header fields
*/
enum
{
ZlibMeth = 0x0f, /* mask of compression methods */
ZlibDeflate = 0x08,
ZlibCInfo = 0xf0, /* mask of compression aux. info */
ZlibWin32k = 0x70 /* 32k history window */
2003-11-23 18:19:18 +00:00
};