ack/util/grind/token.h
1990-09-07 14:56:24 +00:00

17 lines
233 B
C

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