lua/hash.h

39 lines
695 B
C
Raw Normal View History

1993-07-28 17:18:00 +04:00
/*
** hash.h
** hash manager for lua
1996-05-06 18:30:27 +04:00
** $Id: hash.h,v 2.11 1996/03/08 12:04:04 roberto Exp roberto $
1993-07-28 17:18:00 +04:00
*/
#ifndef hash_h
#define hash_h
#include "types.h"
#include "opcode.h"
1993-07-28 17:18:00 +04:00
typedef struct node
{
Object ref;
Object val;
} Node;
typedef struct Hash
{
struct Hash *next;
Node *node;
1996-05-06 18:30:27 +04:00
int nhash;
int nuse;
char mark;
1993-07-28 17:18:00 +04:00
} Hash;
1996-02-07 17:13:17 +03:00
int lua_equalObj (Object *t1, Object *t2);
1996-05-06 18:30:27 +04:00
int luaI_redimension (int nhash);
Hash *lua_createarray (int nhash);
void lua_hashmark (Hash *h);
Long lua_hashcollector (void);
Object *lua_hashget (Hash *t, Object *ref);
1993-07-28 17:18:00 +04:00
Object *lua_hashdefine (Hash *t, Object *ref);
void lua_next (void);
#endif