wip: fork()

This commit is contained in:
0x35c
2025-11-12 15:07:36 +01:00
parent 02d196fab5
commit 34aa0f0eb4
9 changed files with 115 additions and 28 deletions

View File

@ -4,3 +4,6 @@ struct list {
void *content;
struct list *next;
};
struct list *lst_last(struct list *head);
void lst_add_back(struct list **head, struct list *e);