lparser.h 284 B

1234567891011121314151617
  1. /*
  2. ** $Id: lparser.h,v 1.4 1999/08/16 20:52:00 roberto Exp roberto $
  3. ** LL(1) Parser and code generator for Lua
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lparser_h
  7. #define lparser_h
  8. #include "lobject.h"
  9. #include "lzio.h"
  10. TProtoFunc *luaY_parser (lua_State *L, ZIO *z);
  11. #endif