/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstiter_bonus.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/09 09:03:22 by cacharle #+# #+# */ /* Updated: 2019/10/09 09:08:56 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "libft_bonus.h" void ft_lstiter(t_list *lst, void (*f)(t_list *)) { while (lst != NULL) { (*f)(lst); lst = lst->next; } }