/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstiter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/12/08 14:32:03 by bchanot #+# #+# */ /* Updated: 2017/12/08 14:33:10 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_lstiter(t_slist *lst, void (*f)(t_slist *elem)) { t_slist *tmp; tmp = lst; while (tmp != NULL) { (*f)(tmp); tmp = tmp->next; } }