auxiliar functions "luaH_setint" & "luaH_getint".

This commit is contained in:
Roberto Ierusalimschy
1998-07-12 13:15:19 -03:00
parent ee912e5a7f
commit 41d9ea948c
2 changed files with 23 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltable.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $
** $Id: ltable.h,v 1.5 1997/11/26 18:53:45 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -20,5 +20,8 @@ void luaH_free (Hash *frees);
TObject *luaH_get (Hash *t, TObject *ref);
TObject *luaH_set (Hash *t, TObject *ref);
Node *luaH_next (TObject *o, TObject *r);
void luaH_setint (Hash *t, int ref, TObject *val);
TObject *luaH_getint (Hash *t, int ref);
#endif