This commit is contained in:
2026-03-30 10:57:41 +02:00
commit e5506eabca
13 changed files with 203 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef LISTS_H
#define LISTS_H
#include <stddef.h>
struct list {
struct list *next;
int data;
};
struct dlist {
struct dlist *next;
struct dlist *prev;
int data;
};
#endif /* !LISTS_H */