inflate.h
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:1k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /* inflate.h for UnZip -- put in the public domain by Mark Adler
  2.    version c14f, 23 November 1995 */
  3. /* You can do whatever you like with this source file, though I would
  4.    prefer that if you modify it and redistribute it that you include
  5.    comments to that effect with your name and the date.  Thank you.
  6.    History:
  7.    vers    date          who           what
  8.    ----  ---------  --------------  ------------------------------------
  9.     c14  12 Mar 93  M. Adler        made inflate.c standalone with the
  10.                                     introduction of inflate.h.
  11.     c14d 28 Aug 93  G. Roelofs      replaced flush/FlushOutput with new version
  12.     c14e 29 Sep 93  G. Roelofs      moved everything into unzip.h; added crypt.h
  13.     c14f 23 Nov 95  G. Roelofs      added UNZIP_INTERNAL to accommodate newly
  14.                                     split unzip.h
  15.  */
  16. #define UNZIP_INTERNAL
  17. #include "unzip.h"     /* provides slide[], typedefs and macros */
  18. #ifdef FUNZIP
  19. #  include "crypt.h"   /* provides NEXTBYTE macro for crypt version of funzip */
  20. #endif