
#ifndef __LLIST_H__
#define __LLIST_H__ 1

typedef struct Llist llist;
typedef struct Elist elist;


struct Llist {
    elist *head;
};

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

#endif

