1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
Files
lua-lua/lex.h
T
1996-11-08 10:49:35 -02:00

20 lines
293 B
C

/*
** lex.h
** TecCGraf - PUC-Rio
** $Id: lex.h,v 1.2 1996/02/14 13:35:51 roberto Exp roberto $
*/
#ifndef lex_h
#define lex_h
typedef int (*Input) (void);
void lua_setinput (Input fn);
void luaI_syntaxerror (char *s);
int luaY_lex (void);
void luaI_addReserved (void);
#endif