From 55b16959717084884fd4a0cbae6d19e3786c20c7 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Tue, 8 Dec 2009 19:46:35 +0100 Subject: RELEASE LuaJIT-2.0.0-beta1 --- src/lj_parse.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/lj_parse.h (limited to 'src/lj_parse.h') diff --git a/src/lj_parse.h b/src/lj_parse.h new file mode 100644 index 00000000..72aac2c6 --- /dev/null +++ b/src/lj_parse.h @@ -0,0 +1,15 @@ +/* +** Lua parser (source code -> bytecode). +** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h +*/ + +#ifndef _LJ_PARSE_H +#define _LJ_PARSE_H + +#include "lj_obj.h" +#include "lj_lex.h" + +LJ_FUNC GCproto *lj_parse(LexState *ls); +LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l); + +#endif -- cgit v1.2.3-55-g6feb