blob: 230d0df6822badff9b2481a82a3fe505c359facb [file] [log] [blame]
Mike Frysingere89516f2011-04-08 12:23:30 +00001/*
2 * This file is derived from various .h and .c files from the zlib-1.2.3
3 * distribution by Jean-loup Gailly and Mark Adler, with some additions
4 * by Paul Mackerras to aid in implementing Deflate compression and
5 * decompression for PPP packets. See zlib.h for conditions of
6 * distribution and use.
7 *
8 * Changes that have been made include:
9 * - changed functions not used outside this file to "local"
10 * - added minCompression parameter to deflateInit2
11 * - added Z_PACKET_FLUSH (see zlib.h for details)
12 * - added inflateIncomp
13 */
14
15#include "zutil.h"
16#include "inftrees.h"
17#include "inflate.h"
18#include "inffast.h"
19#include "inffixed.h"
20#include "inffast.c"
21#include "inftrees.c"
22#include "inflate.c"
23#include "zutil.c"
24#include "adler32.c"