Files
crafting-interpreters/challenges/01-intro-challenges/c-env/linked_list.h
2022-09-02 21:57:44 +02:00

14 lines
227 B
C

typedef struct _Item {
char *data;
struct _Item *prev;
struct _Item *next;
} Item;
typedef struct List {
Item *head;
} List;
List* InitList();
void Insert(List *l, char *data);
Item* Find(List *l, char *data);