summaryrefslogtreecommitdiff
path: root/lex.h
blob: 0c6b14d9f6e1fd372bcb6f8b6c8b02e39ebc3bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
** 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