Lines Matching full:zlib
1 /* inflate.c -- zlib decompression
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * improve code readability and style over the previous zlib inflate code
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
321 Then that can be linked with zlib built with MAKEFIXED defined and run:
337 puts(" subject to change. Applications should only use zlib.h.");
431 /* check function to use adler32() for zlib or crc32() for gzip */
595 return code (per zlib.h). inflate() always writes as much as possible to
597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
599 provides the effect documented in zlib.h for Z_FINISH when the entire input
654 state->flags = 0; /* expect zlib header */
657 if (!(state->wrap & 1) || /* check if zlib header allowed */
681 Tracev((stderr, "inflate: zlib header ok\n"));