lex.h 277 B

123456789101112131415161718
  1. /*
  2. ** lex.h
  3. ** TecCGraf - PUC-Rio
  4. ** $Id: lex.h,v 1.3 1996/11/08 12:49:35 roberto Exp roberto $
  5. */
  6. #ifndef lex_h
  7. #define lex_h
  8. #include "zio.h"
  9. void lua_setinput (ZIO *z);
  10. void luaI_syntaxerror (char *s);
  11. int luaY_lex (void);
  12. void luaI_addReserved (void);
  13. #endif