summaryrefslogtreecommitdiff
path: root/ft_lstiter.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_lstiter.c')
-rw-r--r--ft_lstiter.c12
1 files changed, 0 insertions, 12 deletions
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;
- }
-}
-*/