From 472b8f20c0f74d20dbb434abce10ee86054b9975 Mon Sep 17 00:00:00 2001 From: yctct Date: Thu, 5 Feb 2026 12:18:33 +0100 Subject: Remove tests --- ft_lstiter.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'ft_lstiter.c') diff --git a/ft_lstiter.c b/ft_lstiter.c index 85c404a..06c9ce7 100644 --- a/ft_lstiter.c +++ b/ft_lstiter.c @@ -26,15 +26,3 @@ void ft_lstiter(t_list *lst, void (*f)(void *)) } } -/* -{ - t_list *current; - - current = lst; - while (current) - { - f(current->content); - current = current->next; - } -} -*/ -- cgit v1.2.3