home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / squsq / usq-20.h < prev    next >
C/C++ Source or Header  |  1984-07-08  |  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.