This commit is contained in:
2026-04-09 15:08:25 +02:00
parent 1914d5c691
commit 6c6929bcb1
16 changed files with 3779 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef LIST_H
#define LIST_H
typedef void (*acceptor)(void*);
struct list
{
void *data;
struct list *next;
acceptor print;
acceptor free;
};
void push_front(struct list **l, void *data, acceptor p, acceptor f);
void pop_front(struct list **l);
void print_list(struct list *l);
void destroy_list(struct list **l);
#endif /* ! LIST_H */