// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #include #include #include static struct list *list_new(void) { struct list *list = malloc(sizeof(*list)); if (!list) fatal("out of memory!\n"); return list; } struct list *list_add(struct list *list, void *data) { struct list *new = list_new(); new->data = data; new->next = list; return new; } void list_free(struct list *list) { while (list) { struct list *next = list->next; free(list); list = next; } }