This is huffman.h in view mode; [Download] [Up]
#define	HUFF_BE		0
#define	HUFF_LE		1
typedef struct node {
    int flag, byte;
    struct node *one, *zero;
} node;
extern int (*get_bit)();
extern void clrhuff();
extern struct node nodelist[];
extern int bytesread;
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.