1 typedef struct assoc{
2   struct assoc *link;
3   node_ptr x;
4   node_ptr y;
5 } assoc_rec,*assoc_ptr;
6 
7 hash_ptr new_assoc();
8 node_ptr find_assoc();
9 void insert_assoc();
10 void assoc_init();
11