mirror of
https://github.com/lua/lua.git
synced 2025-01-14 05:43:00 +08:00
33 lines
844 B
C
33 lines
844 B
C
/*
|
|
** $Id: ltable.h,v 1.28 2001/01/26 13:18:00 roberto Exp roberto $
|
|
** Lua tables (hash)
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef ltable_h
|
|
#define ltable_h
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
#define node(t,i) (&(t)->node[i])
|
|
#define key(n) (&(n)->key)
|
|
#define val(n) (&(n)->val)
|
|
|
|
#define luaH_get(t,k) luaH_set(NULL,t,k)
|
|
#define luaH_getnum(t,k) luaH_setnum(NULL,t,k)
|
|
#define luaH_getstr(t,k) luaH_setstr(NULL,t,k)
|
|
|
|
Hash *luaH_new (lua_State *L, int nhash);
|
|
void luaH_free (lua_State *L, Hash *t);
|
|
TObject *luaH_set (lua_State *L, Hash *t, const TObject *key);
|
|
Node * luaH_next (lua_State *L, Hash *t, const TObject *r);
|
|
TObject *luaH_setnum (lua_State *L, Hash *t, lua_Number key);
|
|
TObject *luaH_setstr (lua_State *L, Hash *t, TString *key);
|
|
|
|
/* exported only for debugging */
|
|
Node *luaH_mainposition (const Hash *t, const TObject *key);
|
|
|
|
|
|
#endif
|