tokenname.h 510 B

12345678910111213141516171819
  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. /* $Id$ */
  6. /* TOKENNAME DEFINITION */
  7. #ifndef LANG_CEM_CEMCOM_ANSI_TOCKENNAME_H
  8. #define LANG_CEM_CEMCOM_ANSI_TOCKENNAME_H
  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. };
  15. void reserve(struct tokenname resv[]);
  16. #endif /* LANG_CEM_CEMCOM_ANSI_TOCKENNAME_H */