This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 #ifndef _CLOOKUP_H_
2 #define _CLOOKUP_H_
3
4 #include <stdlib.h>
5 #include <stdio.h>
6
7 #define LOADFACTOR 0.75
8 #define HASH_SIZE 100
9
10 typedef struct chashlistnode {
11         unsigned int key;
12         void *val; //this can be cast to another type or used to point to a larger structure
13         struct chashlistnode *next;
14 } chashlistnode_t;
15
16 typedef struct chashtable {
17         chashlistnode_t *table; // points to beginning of hash table
18         unsigned int size;
19         unsigned int numelements;
20         float loadfactor;
21 } chashtable_t;
22
23 /* Prototypes for hash*/
24 chashtable_t *chashCreate(unsigned int size, float loadfactor);
25 unsigned int chashFunction(chashtable_t *table, unsigned int key);
26 unsigned int chashInsert(chashtable_t *table, unsigned int key, void *val);
27 void *chashSearch(chashtable_t *table, unsigned int key); //returns val, NULL if not found
28 unsigned int chashRemove(chashtable_t *table, unsigned int key); //returns -1 if not found
29 unsigned int chashResize(chashtable_t *table, unsigned int newsize);
30 void chashDelete(chashtable_t *table);
31 /* end hash */
32
33 #endif
34