summaryrefslogtreecommitdiff
path: root/src/lex.h
blob: a942cf6dbe7ebfb59b58fe55935ac225190255f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
** lex.h
** TecCGraf - PUC-Rio
** $Id: lex.h,v 1.4 1997/06/16 16:50:22 roberto Exp $
*/

#ifndef lex_h
#define lex_h

#include "zio.h"

void    lua_setinput   (ZIO *z);
void luaI_syntaxerror (char *s);
int     luaY_lex (void);
void luaI_addReserved (void);


#endif