Imported from ../lua-5.0.3.tar.gz.
[lua.git] / src / lvm.h
blob19cce200b696ff40332b240cf3c2cb1fd4343c78
1 /*
2 ** $Id: lvm.h,v 1.47 2002/11/14 16:16:21 roberto Exp $
3 ** Lua virtual machine
4 ** See Copyright Notice in lua.h
5 */
7 #ifndef lvm_h
8 #define lvm_h
11 #include "ldo.h"
12 #include "lobject.h"
13 #include "ltm.h"
16 #define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
18 #define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
19 (((o) = luaV_tonumber(o,n)) != NULL))
21 #define equalobj(L,o1,o2) \
22 (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
25 int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
26 int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2);
27 const TObject *luaV_tonumber (const TObject *obj, TObject *n);
28 int luaV_tostring (lua_State *L, StkId obj);
29 const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key,
30 int loop);
31 void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
32 StkId luaV_execute (lua_State *L);
33 void luaV_concat (lua_State *L, int total, int last);
35 #endif