home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / util / unix / macutil2.sha / macutil / macunpack / huffman.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-05  |  222 b   |  15 lines

  1. #define    HUFF_BE        0
  2. #define    HUFF_LE        1
  3.  
  4. typedef struct node {
  5.     int flag, byte;
  6.     struct node *one, *zero;
  7. } node;
  8.  
  9. extern int (*get_bit)();
  10. extern void clrhuff();
  11.  
  12. extern struct node nodelist[];
  13. extern int bytesread;
  14.  
  15.