aboutsummaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/hash.h b/hash.h
index 8ef6ddf1..86660721 100644
--- a/hash.h
+++ b/hash.h
@@ -2,13 +2,14 @@
2** hash.h 2** hash.h
3** hash manager for lua 3** hash manager for lua
4** Luiz Henrique de Figueiredo - 17 Aug 90 4** Luiz Henrique de Figueiredo - 17 Aug 90
5** $Id: hash.h,v 2.8 1995/01/12 14:19:04 roberto Exp roberto $ 5** $Id: hash.h,v 2.9 1996/02/07 14:13:17 roberto Exp roberto $
6*/ 6*/
7 7
8#ifndef hash_h 8#ifndef hash_h
9#define hash_h 9#define hash_h
10 10
11#include "types.h" 11#include "types.h"
12#include "opcode.h"
12 13
13typedef struct node 14typedef struct node
14{ 15{
@@ -27,6 +28,7 @@ typedef struct Hash
27 28
28 29
29int lua_equalObj (Object *t1, Object *t2); 30int lua_equalObj (Object *t1, Object *t2);
31Word luaI_redimension (Word nhash);
30Hash *lua_createarray (Word nhash); 32Hash *lua_createarray (Word nhash);
31void lua_hashmark (Hash *h); 33void lua_hashmark (Hash *h);
32Long lua_hashcollector (void); 34Long lua_hashcollector (void);