1987-03-10 11:58:22 +00:00
|
|
|
/* $Header$ */
|
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".
|
|
|
|
*/
|
1986-11-24 20:42:13 +00:00
|
|
|
/* t o k e n . h
|
|
|
|
*
|
|
|
|
* Contains the structure declaration for a token
|
|
|
|
*/
|
|
|
|
struct token {
|
|
|
|
int t_tokno; /* token number */
|
|
|
|
char t_attrib; /* it's attribute (always a character) */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct token dot; /* current token */
|