1997-09-16 16:25:59 -03:00
|
|
|
/*
|
1999-01-25 10:30:11 -02:00
|
|
|
** $Id: ltable.h,v 1.8 1999/01/04 12:54:33 roberto Exp roberto $
|
1997-09-16 16:25:59 -03: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)
|
1997-10-18 14:29:15 -02:00
|
|
|
#define val(n) (&(n)->val)
|
1997-09-16 16:25:59 -03:00
|
|
|
#define nhash(t) ((t)->nhash)
|
|
|
|
|
1999-01-25 10:30:11 -02:00
|
|
|
#define luaH_get(t,ref) (val(luaH_present((t), (ref))))
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
Hash *luaH_new (int nhash);
|
|
|
|
void luaH_free (Hash *frees);
|
1999-01-25 10:30:11 -02:00
|
|
|
Node *luaH_present (Hash *t, TObject *ref);
|
1997-09-16 16:25:59 -03:00
|
|
|
TObject *luaH_set (Hash *t, TObject *ref);
|
1998-12-30 11:14:46 -02:00
|
|
|
Node *luaH_next (Hash *t, TObject *r);
|
1998-07-12 13:15:19 -03:00
|
|
|
void luaH_setint (Hash *t, int ref, TObject *val);
|
|
|
|
TObject *luaH_getint (Hash *t, int ref);
|
1999-01-04 10:54:33 -02:00
|
|
|
void luaH_move (Hash *t, int from, int to);
|
1998-07-12 13:15:19 -03:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|