Imported from ../lua-4.0.tar.gz.
[lua.git] / src / luac / luac.h
blobf8987cf2e2c09c46e0896456c5d1a3e68a839073
1 /*
2 ** $Id: luac.h,v 1.18 2000/10/31 16:57:23 lhf Exp $
3 ** definitions for luac
4 ** See Copyright Notice in lua.h
5 */
7 #include "ldebug.h"
8 #include "lfunc.h"
9 #include "lmem.h"
10 #include "lobject.h"
11 #include "lopcodes.h"
12 #include "lstring.h"
13 #include "ltable.h"
14 #include "lundump.h"
16 extern lua_State *lua_state;
17 #define L lua_state /* lazy! */
19 /* from dump.c */
20 void luaU_dumpchunk(const Proto* Main, FILE* D);
22 /* from opt.c */
23 void luaU_optchunk(Proto* Main);
25 /* from print.c */
26 void luaU_printchunk(const Proto* Main);
28 /* from test.c */
29 void luaU_testchunk(const Proto* Main);
31 #define Sizeof(x) ((int)sizeof(x))