lvm.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. ** $Id: lvm.h,v 1.46 2002/08/07 19:22:39 roberto Exp roberto $
  3. ** Lua virtual machine
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lvm_h
  7. #define lvm_h
  8. #include "ldo.h"
  9. #include "lobject.h"
  10. #include "ltm.h"
  11. #define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
  12. #define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
  13. (((o) = luaV_tonumber(o,n)) != NULL))
  14. #define equalobj(L,o1,o2) \
  15. (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
  16. int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
  17. int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2);
  18. const TObject *luaV_tonumber (const TObject *obj, TObject *n);
  19. int luaV_tostring (lua_State *L, StkId obj);
  20. const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key,
  21. int loop);
  22. void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
  23. StkId luaV_execute (lua_State *L);
  24. void luaV_concat (lua_State *L, int total, int last);
  25. #endif