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