From 185af2c969c5d90ebcf7948e3b9fd8695b78256f Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 15 Sep 2020 18:30:27 +0200 Subject: Added some list functions --- libc/inc/list.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libc/inc') diff --git a/libc/inc/list.h b/libc/inc/list.h index 0a5c6c0..0c3668d 100644 --- a/libc/inc/list.h +++ b/libc/inc/list.h @@ -20,6 +20,9 @@ struct list *list_new(); /* 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); -void list_remove(struct list *list, struct node *node); +struct list *list_remove(struct list *list, struct node *node); +struct node *list_last(struct list *list); +struct list *list_swap(struct list *list, struct node *a, struct node *b); +struct node *list_first_data(struct list *list, void *data); #endif -- cgit v1.2.3