From 4e9f2d13d5b6fa71ca480394e0b7e75463d4aeec Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 14 Oct 1999 17:13:31 -0200 Subject: new implementation of hash tables. --- lstring.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lstring.h') diff --git a/lstring.h b/lstring.h index c1323808..df0f079d 100644 --- a/lstring.h +++ b/lstring.h @@ -1,5 +1,5 @@ /* -** $Id: lstring.h,v 1.9 1999/10/04 17:51:04 roberto Exp roberto $ +** $Id: lstring.h,v 1.10 1999/10/11 16:13:11 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -9,6 +9,7 @@ #include "lobject.h" +#include "lstate.h" #define NUM_HASHSTR 31 /* a prime not in array `dimensions' */ @@ -25,6 +26,7 @@ void luaS_init (void); +void luaS_grow (stringtable *tb); TaggedString *luaS_createudata (void *udata, int tag); void luaS_freeall (void); void luaS_free (TaggedString *ts); -- cgit v1.2.3-55-g6feb