home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / cpm68k / 68000usq.lbr / USQ.H < prev    next >
Text File  |  1985-02-09  |  384b  |  18 lines

  1. /*
  2.     @(#)usq.h    1.3    9/4/84 19:57:23
  3. */
  4.  
  5. #define LARGE 30000
  6.  
  7. /* Decoding tree */
  8. struct {
  9.     int children[2];    /* left, right */
  10. } dnode[NUMVALS - 1];
  11.  
  12. int bpos;    /* last bit position read */
  13. int curin;    /* last byte value read */
  14.  
  15. /* Variables associated with repetition decoding */
  16. int repct;    /*Number of times to retirn value*/
  17. int value;    /*current byte value or EOF */
  18.