1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/lvm.h

37 lines
1.1 KiB
C
Raw Normal View History

1997-09-16 16:25:59 -03:00
/*
** $Id: lvm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
1997-09-16 16:25:59 -03: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 16:25:59 -03:00
2002-02-07 15:24:05 -02:00
#define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
2002-03-04 18:33:09 -03:00
#define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
(((o) = luaV_tonumber(o,n)) != NULL))
1997-09-16 16:25:59 -03:00
2002-06-13 10:39:55 -03:00
#define equalobj(L,o1,o2) \
(ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
1997-09-16 16:25:59 -03:00
int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
const TValue *luaV_tonumber (const TValue *obj, TValue *n);
2002-11-14 14:16:21 -02:00
int luaV_tostring (lua_State *L, StkId obj);
StkId luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val,
const Instruction *pc);
StkId luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val,
const Instruction *pc);
StkId luaV_execute (lua_State *L, int nexeccalls);
2002-06-03 11:08:43 -03:00
void luaV_concat (lua_State *L, int total, int last);
1997-09-16 16:25:59 -03:00
#endif