aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ll.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ll.c b/src/ll.c
index 8e2d078..ef5e021 100644
--- a/src/ll.c
+++ b/src/ll.c
@@ -1,4 +1,8 @@
// Implementation of a Linked List
+//
+// TODO: recursive implementation for llfree
+//
+
#include <stdio.h>
#include <stdlib.h>
#include "ll.h"
@@ -79,9 +83,6 @@ void llfree(Node** head) {
*head = NULL;
}
-// TODO: llfree recursive implementation
-// ...
-
int llrmlast(Node** head) {
Node* n = *head;
Node* cur = NULL;