diff options
author | Marvin Borner | 2020-11-01 12:35:00 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-01 12:35:00 +0100 |
commit | f40be8b5b6227775901a99946779661d0b4439e6 (patch) | |
tree | 34c28f138f4167de258ee18db44707aa4637a68d /libc/inc/list.h | |
parent | e0d3b1671b3f94657d70223b51285ed287c882df (diff) |
Added files demo and needed functions
Diffstat (limited to 'libc/inc/list.h')
-rw-r--r-- | libc/inc/list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/inc/list.h b/libc/inc/list.h index 0c3668d..50b21c2 100644 --- a/libc/inc/list.h +++ b/libc/inc/list.h @@ -17,6 +17,7 @@ struct node { }; struct list *list_new(); +void list_destroy(struct list *list); /* 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); |