1*17049c45SAxel Dörfler /* 2*17049c45SAxel Dörfler Copyright (c) 1990-2000 Info-ZIP. All rights reserved. 3*17049c45SAxel Dörfler 4*17049c45SAxel Dörfler See the accompanying file LICENSE, version 2000-Apr-09 or later 5*17049c45SAxel Dörfler (the contents of which are also included in unzip.h) for terms of use. 6*17049c45SAxel Dörfler If, for some reason, all these files are missing, the Info-ZIP license 7*17049c45SAxel Dörfler also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html 8*17049c45SAxel Dörfler */ 9*17049c45SAxel Dörfler /* inflate.h for UnZip -- by Mark Adler 10*17049c45SAxel Dörfler version c14f, 23 November 1995 */ 11*17049c45SAxel Dörfler 12*17049c45SAxel Dörfler 13*17049c45SAxel Dörfler /* Copyright history: 14*17049c45SAxel Dörfler - Starting with UnZip 5.41 of 16-April-2000, this source file 15*17049c45SAxel Dörfler is covered by the Info-Zip LICENSE cited above. 16*17049c45SAxel Dörfler - Prior versions of this source file, found in UnZip source packages 17*17049c45SAxel Dörfler up to UnZip 5.40, were put in the public domain. 18*17049c45SAxel Dörfler The original copyright note by Mark Adler was: 19*17049c45SAxel Dörfler "You can do whatever you like with this source file, 20*17049c45SAxel Dörfler though I would prefer that if you modify it and 21*17049c45SAxel Dörfler redistribute it that you include comments to that effect 22*17049c45SAxel Dörfler with your name and the date. Thank you." 23*17049c45SAxel Dörfler 24*17049c45SAxel Dörfler History: 25*17049c45SAxel Dörfler vers date who what 26*17049c45SAxel Dörfler ---- --------- -------------- ------------------------------------ 27*17049c45SAxel Dörfler c14 12 Mar 93 M. Adler made inflate.c standalone with the 28*17049c45SAxel Dörfler introduction of inflate.h. 29*17049c45SAxel Dörfler c14d 28 Aug 93 G. Roelofs replaced flush/FlushOutput with new version 30*17049c45SAxel Dörfler c14e 29 Sep 93 G. Roelofs moved everything into unzip.h; added crypt.h 31*17049c45SAxel Dörfler c14f 23 Nov 95 G. Roelofs added UNZIP_INTERNAL to accommodate newly 32*17049c45SAxel Dörfler split unzip.h 33*17049c45SAxel Dörfler */ 34*17049c45SAxel Dörfler 35*17049c45SAxel Dörfler #define UNZIP_INTERNAL 36*17049c45SAxel Dörfler #include "unzip.h" /* provides slide[], typedefs and macros */ 37*17049c45SAxel Dörfler #ifdef FUNZIP 38*17049c45SAxel Dörfler # include "crypt.h" /* provides NEXTBYTE macro for crypt version of funzip */ 39*17049c45SAxel Dörfler #endif 40