ack/util/grind/token.h
1994-06-24 11:31:16 +00:00

17 lines
229 B
C

/* $Id$ */
/* 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