iocc.h 630 B

1234567891011121314151617181920212223
  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. #ifndef LANG_NCGG_IOCC_H
  7. #define LANG_NCGG_IOCC_H
  8. typedef struct iocc {
  9. short in_set[SETSIZE];
  10. int in_index;
  11. } iocc_t,*iocc_p;
  12. /* util/ncgg/iocc.c */
  13. iocc_t subr_iocc(int tokarg, int subreg);
  14. iocc_t tokm_iocc(int tokarg, char *ident);
  15. iocc_t percident_iocc(char *ident);
  16. iocc_t ident_iocc(char *ident);
  17. iocc_t all_iocc(int all_no, int subreg);
  18. iocc_t descr_iocc(char *ident);
  19. int instalookup(inst_t insta, int filled);
  20. #endif /* LANG_NCGG_IOCC_H */