#ifndef __HASHMAP_LINKEDLIST_H #define __HASHMAP_LINKEDLIST_H #include struct ll { struct node *list; struct node *head; struct node *tail; }; struct ll new_ll(); void insert_ll(struct ll *list, const char *key, const void *value); void remove_ll(struct ll *list, struct node *link); #endif