zlib.c 751 B

123456789101112131415161718192021222324
  1. /*
  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. #include "zutil.h"
  15. #include "inftrees.h"
  16. #include "inflate.h"
  17. #include "inffast.h"
  18. #include "inffixed.h"
  19. #include "inffast.c"
  20. #include "inftrees.c"
  21. #include "inflate.c"
  22. #include "zutil.c"
  23. #include "adler32.c"