lua/lvm.h

31 lines
840 B
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lvm.h,v 1.40 2002/06/03 14:08:43 roberto Exp roberto $
1997-09-16 23:25:59 +04: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 23:25:59 +04:00
2002-02-07 20:24:05 +03:00
#define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
2002-03-05 00:33:09 +03:00
#define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
(((o) = luaV_tonumber(o,n)) != NULL))
1997-09-16 23:25:59 +04:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
const TObject *luaV_tonumber (const TObject *obj, TObject *n);
int luaV_tostring (lua_State *L, TObject *obj);
void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId res);
void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
2002-01-10 01:02:47 +03:00
StkId luaV_execute (lua_State *L);
2002-06-03 18:08:43 +04:00
void luaV_concat (lua_State *L, int total, int last);
1997-09-16 23:25:59 +04:00
#endif