lua/lex.h

19 lines
277 B
C
Raw Normal View History

1996-02-13 09:30:39 -08:00
/*
** lex.h
** TecCGraf - PUC-Rio
1997-06-16 09:50:22 -07:00
** $Id: lex.h,v 1.3 1996/11/08 12:49:35 roberto Exp roberto $
1996-02-13 09:30:39 -08:00
*/
#ifndef lex_h
#define lex_h
1997-06-16 09:50:22 -07:00
#include "zio.h"
1996-02-13 09:30:39 -08:00
1997-06-16 09:50:22 -07:00
void lua_setinput (ZIO *z);
void luaI_syntaxerror (char *s);
int luaY_lex (void);
void luaI_addReserved (void);
1996-02-13 09:30:39 -08:00
#endif