diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-14 16:41:15 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-14 16:41:15 -0200 |
commit | 3b7a36653b5da227502ec5a3c677b6a351af67be (patch) | |
tree | 5e6d9e0b5c169e29bf8fc9339c4699223b153546 /hash.h | |
parent | e1d91fd0e185e295fa15dd508580d3c8d4636960 (diff) | |
download | lua-3b7a36653b5da227502ec5a3c677b6a351af67be.tar.gz lua-3b7a36653b5da227502ec5a3c677b6a351af67be.tar.bz2 lua-3b7a36653b5da227502ec5a3c677b6a351af67be.zip |
lua_equalObj now is global (and is used by opcode)
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ | |||
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.3 1994/08/09 11:24:45 celes Exp celes $ | 5 | ** $Id: hash.h,v 2.4 1994/09/08 16:51:49 celes Exp roberto $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef hash_h | 8 | #ifndef hash_h |
@@ -24,6 +24,7 @@ typedef struct Hash | |||
24 | } Hash; | 24 | } Hash; |
25 | 25 | ||
26 | 26 | ||
27 | int lua_equalObj (Object *t1, Object *t2); | ||
27 | Hash *lua_createarray (int nhash); | 28 | Hash *lua_createarray (int nhash); |
28 | void lua_hashmark (Hash *h); | 29 | void lua_hashmark (Hash *h); |
29 | void lua_hashcollector (void); | 30 | void lua_hashcollector (void); |