ack/lang/m2/comp/LLlex.h

32 lines
751 B
C
Raw Normal View History

1986-03-26 15:11:02 +00:00
/* T O K E N D E S C R I P T O R D E F I N I T I O N */
1986-03-20 14:52:03 +00:00
/* $Header$ */
1986-04-04 13:47:04 +00:00
struct string {
int s_length; /* length of a string */
char *s_str; /* the string itself */
};
1986-03-20 14:52:03 +00:00
struct token {
int tk_symb; /* token itself */
1986-04-04 13:47:04 +00:00
char *tk_filename; /* filename in which it occurred */
1986-03-24 17:29:57 +00:00
int tk_lineno; /* linenumber on which it occurred */
1986-03-20 14:52:03 +00:00
union {
struct idf *tk_idf; /* IDENT */
1986-04-04 13:47:04 +00:00
struct string tk_str; /* STRING */
arith tk_int; /* INTEGER */
1986-03-20 14:52:03 +00:00
char *tk_real; /* REAL */
} tk_data;
};
#define TOK_IDF tk_data.tk_idf
1986-04-04 13:47:04 +00:00
#define TOK_STR tk_data.tk_str.s_str
#define TOK_SLE tk_data.tk_str.s_length
#define TOK_INT tk_data.tk_int
1986-03-20 14:52:03 +00:00
#define TOK_REL tk_data.tk_real
extern struct token dot, aside;
#define DOT dot.tk_symb
#define ASIDE aside.tk_symb