hashmap/include/linkedlist.h
2018-05-18 09:01:02 -05:00

17 lines
313 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 new_ll();
void insert_ll(struct ll *list, const char *key, const char *value);
void remove_ll(struct ll *list, struct node *link);
#endif