miniz.c updated to v1.10 - substantial compressor optimizations, fixed minor issue with unsigned long type, added level commmand line option parsing to example3

This commit is contained in:
richgel99@gmail.com
2011-05-28 13:52:24 +00:00
parent fda66cc357
commit 9560a0a51d
5 changed files with 685 additions and 216 deletions

View File

@@ -1,5 +1,5 @@
/* tinfl.c v1.09 - public domain inflate with zlib header parsing/adler32 checking (inflate-only subset of miniz.c)
Rich Geldreich <richgel99@gmail.com>, last updated May 15, 2011
/* tinfl.c v1.10 - public domain inflate with zlib header parsing/adler32 checking (inflate-only subset of miniz.c)
Rich Geldreich <richgel99@gmail.com>, last updated May 20, 2011
Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt
The entire decompressor coroutine is implemented in tinfl_decompress(). The other functions are optional high-level helpers.