lex.h 291 B

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