/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstiter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/06/24 16:57:28 by tosuman #+# #+# */ /* Updated: 2023/06/24 17:26:38 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_lstiter(t_list *lst, void (*f)(void *)) { while (lst) { (*f)(lst->content); lst = lst->next; } }