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