ltable.h 933 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. ** $Id: ltable.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
  3. ** Lua tables (hash)
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef ltable_h
  7. #define ltable_h
  8. #include "lobject.h"
  9. #define gnode(t,i) (&(t)->node[i])
  10. #define gkey(n) (&(n)->i_key)
  11. #define gval(n) (&(n)->i_val)
  12. const TValue *luaH_getnum (Table *t, int key);
  13. TValue *luaH_setnum (lua_State *L, Table *t, int key);
  14. const TValue *luaH_getstr (Table *t, TString *key);
  15. TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
  16. const TValue *luaH_get (Table *t, const TValue *key);
  17. TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
  18. Table *luaH_new (lua_State *L, int narray, int lnhash);
  19. void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
  20. void luaH_free (lua_State *L, Table *t);
  21. int luaH_next (lua_State *L, Table *t, StkId key);
  22. /* exported only for debugging */
  23. Node *luaH_mainposition (const Table *t, const TValue *key);
  24. #endif