lua/lex.h

20 lines
291 B
C
Raw Normal View History

1996-02-13 20:30:39 +03:00
/*
** lex.h
** TecCGraf - PUC-Rio
** $Id: lex.h,v 1.1 1996/02/13 17:30:39 roberto Exp roberto $
1996-02-13 20:30:39 +03:00
*/
#ifndef lex_h
#define lex_h
typedef int (*Input) (void);
void lua_setinput (Input fn);
char *lua_lasttext (void);
int luaY_lex (void);
void luaI_addReserved (void);
1996-02-13 20:30:39 +03:00
#endif