From 91ba8d02037cc27c7b44f1bfd492c42ccd0af042 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 24 May 2021 18:50:55 +0200 Subject: Added more tests and fixed dumb bugs typical --- libs/libc/inc/list.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'libs/libc/inc/list.h') diff --git a/libs/libc/inc/list.h b/libs/libc/inc/list.h index fea98dc..4e5fe65 100644 --- a/libs/libc/inc/list.h +++ b/libs/libc/inc/list.h @@ -18,8 +18,6 @@ struct node { struct list *list_new(void); void list_destroy(struct list *list) NONNULL; -/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private? -/* void list_add_node(struct list *list, struct node *node); */ struct node *list_add(struct list *list, void *data) NONNULL; struct list *list_remove(struct list *list, struct node *node) NONNULL; struct node *list_last(struct list *list) NONNULL; -- cgit v1.2.3