home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / UTILS / SQUSQ / USQ-20.H < prev    next >
C/C++ Source or Header  |  2000-06-30  |  388b  |  17 lines

  1. #define LARGE 30000
  2.  
  3. /* Decoding tree */
  4. struct {
  5.     int children[2];    /* left, right */
  6. } dnode[NUMVALS - 1];
  7.  
  8. int bpos;    /* last bit position read */
  9. int curin;    /* last byte value read */
  10.  
  11. /* Variables associated with repetition decoding */
  12. int repct;    /*Number of times to retirn value*/
  13. int value;    /*current byte value or EOF */
  14.  
  15. /* Original file name without drive */
  16. char origname[257];
  17.