home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / source / lexer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-10-19  |  310 b   |  21 lines

  1.  
  2. #undef W
  3. #ifdef __LEXER__
  4. #define W
  5. #else
  6. #define W extern
  7. #endif
  8.  
  9. #include "centry.h"
  10.  
  11. W char *tok;
  12.  
  13. void lexer_init(FILE *f);
  14. char *lexer_error(char *s, char *v);
  15. void lexer_readToken();
  16. void lexer_consumeToken();
  17. int lexer_compareToken(char *t);
  18. void lexer_matchToken(char *t,char *s);
  19.  
  20. #include "cexit.h"
  21.