aboutsummaryrefslogtreecommitdiff
path: root/linked_list.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-10 15:41:55 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-02-10 15:41:55 +0100
commit1e0c225b5728990bb0c96cd1297523e35e6646b4 (patch)
tree1e14b3804b3d4108c6687bdc6d01e13dc2705f1d /linked_list.h
parentClean up vcal, add key_val type. (diff)
downloadcalp-1e0c225b5728990bb0c96cd1297523e35e6646b4.tar.gz
calp-1e0c225b5728990bb0c96cd1297523e35e6646b4.tar.xz
Fix linked_list RESET.
Diffstat (limited to 'linked_list.h')
-rw-r--r--linked_list.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/linked_list.h b/linked_list.h
index 35e90d9e..4e9ca042 100644
--- a/linked_list.h
+++ b/linked_list.h
@@ -55,6 +55,10 @@ int APPEND(LLIST(TYPE)) ( LLIST(TYPE)* dest, LLIST(TYPE)* new );
int SIZE(LLIST(TYPE)) ( LLIST(TYPE)* llist );
int EMPTY(LLIST(TYPE)) ( LLIST(TYPE)* llist );
+/*
+ * Resets a linked list by removing all it's objects.
+ * FREE's all elements stored in the list.
+ */
int RESET(LLIST(TYPE)) ( LLIST(TYPE)* llist );
LLIST(TYPE)* RESOLVE(LLIST(TYPE)) (LLIST(TYPE)* dest, LLIST(TYPE)* new);