Challenge 1 + 2

This commit is contained in:
ctsk
2022-09-02 21:57:44 +02:00
parent 69a872fe2d
commit 1b0003e586
9 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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);