Pristine Ack-5.5
[Ack-5.5.git] / util / grind / token.h
1 /* $Id: token.h,v 1.2 1994/06/24 11:01:22 ceriel Exp $ */
2
3 /* token structure for lexical analyzer */
4
5 struct token {
6   int   tokno;
7   long  ival;
8   char  *str;
9   double fval;
10   struct idf *idf;
11 };
12
13 extern struct token     tok, aside;
14
15 #define TOK     tok.tokno
16 #define ASIDE   aside.tokno