From 41259bff31dbb904edfb8070006ccb15577f8f04 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 12 Feb 1996 15:32:40 -0300 Subject: BIG CHANGE: new data structure for constants, strings and globals, using an array of hash tables for all them. --- hash.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hash.h') diff --git a/hash.h b/hash.h index 8ef6ddf1..86660721 100644 --- a/hash.h +++ b/hash.h @@ -2,13 +2,14 @@ ** hash.h ** hash manager for lua ** Luiz Henrique de Figueiredo - 17 Aug 90 -** $Id: hash.h,v 2.8 1995/01/12 14:19:04 roberto Exp roberto $ +** $Id: hash.h,v 2.9 1996/02/07 14:13:17 roberto Exp roberto $ */ #ifndef hash_h #define hash_h #include "types.h" +#include "opcode.h" typedef struct node { @@ -27,6 +28,7 @@ typedef struct Hash int lua_equalObj (Object *t1, Object *t2); +Word luaI_redimension (Word nhash); Hash *lua_createarray (Word nhash); void lua_hashmark (Hash *h); Long lua_hashcollector (void); -- cgit v1.2.3-55-g6feb