1 #define HASHSIZE 5000001
struct s_hash * insert_in_hash_table(struct s_hash **hash_table, char *name, int next_free_index)
void free_hash_table(struct s_hash **hash_table)
void get_hash_stats(struct s_hash **hash_table, char *hash_table_name)
struct s_hash * get_hash_entry(struct s_hash **hash_table, char *name)
int hash_value(char *name)
struct s_hash ** alloc_hash_table(void)
struct s_hash_iterator start_hash_table_iterator(void)
struct s_hash * get_next_hash(struct s_hash **hash_table, struct s_hash_iterator *hash_iterator)