home *** CD-ROM | disk | FTP | other *** search
- extern int LZWSCrunch(register int inlen __asm__("d0"),
- register int outlen __asm__("d1"),
- register int maxnodes __asm__("d2"),
- register char *input __asm__("a0"),
- register char *output __asm__("a1"));
- extern int LZWSDecrunch(register int outLen __asm__("d0"),
- register char *input __asm__("a0"),
- register char *output __asm__("a1"));
- extern int LZWSSize(register char *input __asm__("a0"));
-
- #define IDENTIFIER 0x4C5A /* 'LZ' */
-
- #define NOERROR 1
- #define ERROR 0
- #define ERROR_NOTCRUNCHED -1
- #define ERROR_LESSMEM -2
- #define ERROR_OVERFLOW -3
-