lua/ltable.h

31 lines
781 B
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
1999-08-17 00:52:00 +04:00
** $Id: ltable.h,v 1.11 1999/02/23 14:57:28 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** 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 ref(n) (&(n)->ref)
#define val(n) (&(n)->val)
1997-09-16 23:25:59 +04:00
#define nhash(t) ((t)->nhash)
#define luaH_get(t,ref) (val(luaH_present((t), (ref))))
#define luaH_move(t,from,to) (luaH_setint(t, to, luaH_getint(t, from)))
1997-09-16 23:25:59 +04:00
Hash *luaH_new (int nhash);
void luaH_free (Hash *frees);
1999-08-17 00:52:00 +04:00
Node *luaH_present (const Hash *t, const TObject *key);
void luaH_set (Hash *t, const TObject *ref, const TObject *val);
int luaH_pos (const Hash *t, const TObject *r);
void luaH_setint (Hash *t, int ref, const TObject *val);
TObject *luaH_getint (const Hash *t, int ref);
1997-09-16 23:25:59 +04:00
#endif