ack/util/grind/token.h

17 lines
229 B
C
Raw Permalink Normal View History

1994-06-24 11:31:16 +00:00
/* $Id$ */
1990-09-07 14:56:24 +00:00
/* token structure for lexical analyzer */
struct token {
int tokno;
long ival;
char *str;
double fval;
struct idf *idf;
};
extern struct token tok, aside;
#define TOK tok.tokno
#define ASIDE aside.tokno