mirror of
https://github.com/lua/lua
synced 2024-11-27 07:09:36 +03:00
d1608c597e
used to indicate its type. Table initializations centralized by "tree.c".
20 lines
291 B
C
20 lines
291 B
C
/*
|
|
** 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
|