tokenname.h 390 B

1234567891011121314151617
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. *
  5. * Author: Ceriel J.H. Jacobs
  6. */
  7. /* T O K E N N A M E S T R U C T U R E */
  8. /* $Id$ */
  9. struct tokenname { /* Used for defining the name of a
  10. token as identified by its symbol
  11. */
  12. int tn_symbol;
  13. char *tn_name;
  14. };