diff options
| author | Blake Romero <blake@blkrom.com> | 2024-10-13 05:29:31 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-10-30 10:13:26 +0000 |
| commit | 7b252a2f0f1c5ac50bf605ed7b7cb31b81f78de9 (patch) | |
| tree | dbdce75be8646040f41a188d56cd96bd9be2107b /src/ll.c | |
| parent | 50bb99d2adbe4d1efdaa800e06f2e0e8009562da (diff) | |
Move TODO comment
Diffstat (limited to 'src/ll.c')
| -rw-r--r-- | src/ll.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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; |
