From 840957aee277e7c426647cc133b2a41e7cecd9a9 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Wed, 9 Oct 2019 09:12:43 +0200 Subject: Normed, Makefile bonus rule - bonus rule to add the *_bonus files to libft.a - normed memmove, calloc and bonus --- ft_lstiter.c | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 ft_lstiter.c (limited to 'ft_lstiter.c') diff --git a/ft_lstiter.c b/ft_lstiter.c deleted file mode 100644 index 7eed34b..0000000 --- a/ft_lstiter.c +++ /dev/null @@ -1,10 +0,0 @@ -#include "libft.h" - -void ft_lstiter(t_list *lst, void (*f)(t_list *)) -{ - while (lst != NULL) - { - (*f)(lst); - lst = lst->next; - } -} -- cgit