/* v0.8 * * hashtab.h: Hash table declarations * * This program is free software and may be freely redistributed as * specified in the GNU General Public License. Please see the file * 'COPYING' for details. */ typedef struct hash_node HNODE; struct hash_node { HNODE *left_child; HNODE *right_child; char *key; int *data; }; extern int *hashSearch(char *, HNODE *); extern void hashInsert(char *, int *, HNODE **);