aboutsummaryrefslogtreecommitdiff
path: root/libc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc')
-rw-r--r--libc/inc/list.h1
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);