ack/util/ncgg/token.h

24 lines
473 B
C
Raw Normal View History

1987-03-09 19:15:41 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1984-12-17 15:13:39 +00:00
/* $Header$ */
#ifndef _COST_
#include "cost.h"
#endif
typedef struct token {
char *tk_name;
int tk_size;
cost_t tk_cost;
struct {
int ta_type; /* -1 is int, -2 is addr, >=0 is propno */
char *ta_name;
} tk_att[MAXATT];
int tk_format;
} token_t,*token_p;
extern token_p l_tokens[MAXTOKENS];