mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
291 B
19 lines
291 B
/*
|
|
** lex.h
|
|
** TecCGraf - PUC-Rio
|
|
** $Id: lex.h,v 1.1 1996/02/13 17:30:39 roberto Exp roberto $
|
|
*/
|
|
|
|
#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);
|
|
|
|
|
|
#endif
|
|
|