mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
728 B
29 lines
728 B
/*
|
|
** $Id: lvm.h,v 1.3 1997/10/16 10:59:34 roberto Exp roberto $
|
|
** Lua virtual machine
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lvm_h
|
|
#define lvm_h
|
|
|
|
|
|
#include "ldo.h"
|
|
#include "lobject.h"
|
|
|
|
|
|
#define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0))
|
|
#define tostring(o) ((ttype(o) != LUA_T_STRING) && (luaV_tostring(o) != 0))
|
|
|
|
|
|
void luaV_pack (StkId firstel, int nvararg, TObject *tab);
|
|
int luaV_tonumber (TObject *obj);
|
|
int luaV_tostring (TObject *obj);
|
|
void luaV_gettable (void);
|
|
void luaV_settable (TObject *t, int mode);
|
|
void luaV_getglobal (TaggedString *ts);
|
|
void luaV_setglobal (TaggedString *ts);
|
|
StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base);
|
|
void luaV_closure (int nelems);
|
|
|
|
#endif
|
|
|