lex.h 293 B

12345678910111213141516171819
  1. /*
  2. ** lex.h
  3. ** TecCGraf - PUC-Rio
  4. ** $Id: lex.h,v 1.2 1996/02/14 13:35:51 roberto Exp roberto $
  5. */
  6. #ifndef lex_h
  7. #define lex_h
  8. typedef int (*Input) (void);
  9. void lua_setinput (Input fn);
  10. void luaI_syntaxerror (char *s);
  11. int luaY_lex (void);
  12. void luaI_addReserved (void);
  13. #endif