home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / mit2mot1 / global.h next >
Encoding:
C/C++ Source or Header  |  1993-10-23  |  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.