From 7b252a2f0f1c5ac50bf605ed7b7cb31b81f78de9 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Sun, 13 Oct 2024 05:29:31 +0100 Subject: Move TODO comment --- src/ll.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') 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 #include #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; -- cgit