lua/lvm.h

28 lines
707 B
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
2001-12-05 12:15:18 -08:00
** $Id: lvm.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
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-10-05 05:14:08 -07:00
#define tostring(L,o) ((ttype(o) != LUA_TSTRING) && (luaV_tostring(L, o) != 0))
1997-09-16 12:25:59 -07:00
const TObject *luaV_tonumber (const TObject *obj, TObject *n);
int luaV_tostring (lua_State *L, TObject *obj);
2001-02-07 10:13:49 -08:00
void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res);
void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val);
2002-01-09 14:02:47 -08:00
StkId luaV_execute (lua_State *L);
2001-02-07 10:13:49 -08:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
2002-01-16 14:04:50 -08:00
void luaV_strconc (lua_State *L, int total, int last);
1997-09-16 12:25:59 -07:00
#endif