token.h 404 B

123456789101112131415
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* t o k e n . h
  7. *
  8. * Contains the structure declaration for a token
  9. */
  10. struct token {
  11. int t_tokno; /* token number */
  12. char t_attrib; /* it's attribute (always a character) */
  13. };
  14. extern struct token dot; /* current token */