hashmap/include/linkedlist.h

17 lines
316 B
C

#ifndef __HASHMAP_LINKEDLIST_H
#define __HASHMAP_LINKEDLIST_H
#include <node.h>
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 char *value);
void remove_ll(struct ll *list, struct node *link);
#endif