lua/lvm.h

33 lines
999 B
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
2000-09-05 12:33:32 -07:00
** $Id: lvm.h,v 1.25 2000/08/31 21:02:55 roberto Exp roberto $
1997-09-16 12:25:59 -07:00
** Lua virtual machine
** See Copyright Notice in lua.h
*/
#ifndef lvm_h
#define lvm_h
#include "ldo.h"
#include "lobject.h"
#include "ltm.h"
1997-09-16 12:25:59 -07:00
2000-03-10 10:37:44 -08:00
#define tonumber(o) ((ttype(o) != TAG_NUMBER) && (luaV_tonumber(o) != 0))
#define tostring(L,o) ((ttype(o) != TAG_STRING) && (luaV_tostring(L, o) != 0))
1997-09-16 12:25:59 -07:00
int luaV_tonumber (TObject *obj);
int luaV_tostring (lua_State *L, TObject *obj);
2000-09-05 12:33:32 -07:00
const TObject *luaV_gettable (lua_State *L, StkId t);
void luaV_settable (lua_State *L, StkId t, StkId key);
const TObject *luaV_getglobal (lua_State *L, TString *s);
void luaV_setglobal (lua_State *L, TString *s);
StkId luaV_execute (lua_State *L, const Closure *cl, StkId base);
void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems);
void luaV_Lclosure (lua_State *L, Proto *l, int nelems);
2000-03-08 16:19:22 -08:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top);
2000-09-05 12:33:32 -07:00
void luaV_strconc (lua_State *L, int total, StkId top);
1997-09-16 12:25:59 -07:00
#endif