
#ifndef __LLIST_H__
#define __LLIST_H__ 1

typedef struct Llist llist;
typedef struct Elist elist;


struct Llist {
    elist *head;
};

struct Elist {
    elist *next;
    char *key;
    int count;
};


elist *list_search(llist *L, const char *k);
elist *new_element(const char *s);


#endif

