add libflate

This commit is contained in:
rsc 2003-11-23 18:19:18 +00:00
parent 8a708fb239
commit b6afd33e2f
13 changed files with 2558 additions and 0 deletions

11
src/libflate/zlib.h Normal file
View file

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