diff options
author | Marvin Borner | 2021-05-24 18:50:55 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-24 19:05:59 +0200 |
commit | 91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (patch) | |
tree | 4006f8b37c2e70ddceb6fbb70dd2c690c5cf6035 /libs/libc/inc/list.h | |
parent | a0a1b1318dc886c72eaf60792dbb40f1ea3eeb97 (diff) |
Added more tests and fixed dumb bugs
typical
Diffstat (limited to 'libs/libc/inc/list.h')
-rw-r--r-- | libs/libc/inc/list.h | 2 |
1 files changed, 0 insertions, 2 deletions
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; |