home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v92.tgz / v92.tar / v92 / src / icont / tlex.c < prev    next >
C/C++ Source or Header  |  1996-03-22  |  456b  |  26 lines

  1. /*
  2.  * tlex.c -- the lexical analyzer for icont.
  3.  */
  4.  
  5. #include "::h:gsupport.h"
  6. #undef T_Real
  7. #undef T_String
  8. #undef T_Cset
  9. #include "::h:lexdef.h"
  10. #include "ttoken.h"
  11. #include "tree.h"
  12. #include "tproto.h"
  13. #include <ctype.h>
  14.  
  15. #if MACINTOSH
  16. #if MPW
  17. #include <CursorCtl.h>
  18. #define CURSORINTERVAL 100
  19. #endif                    /* MPW */
  20. #endif                    /* MACINTOSH */
  21.  
  22. #include "::h:parserr.h"
  23. #include "::common:lextab.h"
  24. #include "::common:yylex.h"
  25. #include "::common:error.h"
  26.