/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstiter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/09 15:57:51 by vvobis #+# #+# */ /* Updated: 2024/04/09 18:20:05 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_lstiter(t_list *lst, void (*f)(void *)) { if (!lst || !f) return ; while (lst) { f(lst->content); lst = lst->next; } }