home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / compress / zoosrc20.zoo / lzconst.h < prev    next >
Text File  |  1989-07-25  |  591b  |  18 lines

  1. /* @(#) lzconst.h 2.1 87/12/25 12:22:30 */
  2.  
  3. /*
  4. The contents of this file are hereby released to the public domain.
  5.  
  6.                                     -- Rahul Dhesi  1986/12/31
  7. */
  8.  
  9. #define  INBUFSIZ    (IN_BUF_SIZE - 10)   /* avoid obo errors */
  10. #define  OUTBUFSIZ   (OUT_BUF_SIZE - 10)
  11. #define  MEMERR      2
  12. #define  IOERR       1
  13. #define  MAXBITS     13
  14. #define  CLEAR       256         /* clear code */
  15. #define  Z_EOF       257         /* end of file marker */
  16. #define  FIRST_FREE  258         /* first free code */
  17. #define  MAXMAX      8192        /* max code + 1 */
  18.