home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 712 / mit2mot1 / src / global.h next >
Encoding:
C/C++ Source or Header  |  1993-06-09  |  291 b   |  17 lines

  1. #include <stdio.h>
  2.  
  3. typedef struct hash {
  4.  char *htext;
  5.  char *mapto;
  6.  int htype;
  7.  struct hash *next;
  8. } Hash;
  9.  
  10. extern FILE *yyin, *yyout;
  11. extern unsigned long line_num;
  12.  
  13. extern void mkhash();
  14. extern int lookup();
  15. extern void yyerror();
  16. extern void init_hash(), clear_hash(), init_scanner();
  17.