/*
 * compress.h
 * Part of the !Memphis distribution
 * (c) bdb/nas, 1991-3
 */

/* LZW/Squash compression header */

extern int compress(char *from, int fromlen, char *to, int tolen);
extern void uncompress(char *from, int fromlen, char *to, int tolen);
       
