Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

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