Imported from ../lua-3.2.tar.gz.
[lua.git] / src / lparser.h
blob9825ec57fcc0122e02259ef3e515da04313c2266
1 /*
2 ** $Id: lparser.h,v 1.3 1999/02/25 19:13:56 roberto Exp $
3 ** LL(1) Parser and code generator for Lua
4 ** See Copyright Notice in lua.h
5 */
7 #ifndef lparser_h
8 #define lparser_h
10 #include "lobject.h"
11 #include "lzio.h"
14 void luaY_codedebugline (int line);
15 TProtoFunc *luaY_parser (ZIO *z);
16 void luaY_error (char *s);
17 void luaY_syntaxerror (char *s, char *token);
20 #endif