libft/src/ft_lstiter.c
2023-10-26 18:06:04 +02:00

25 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstiter.c :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/13 19:15:47 by djonker #+# #+# */
/* Updated: 2023/10/18 16:59:53 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_lstiter(t_list *lst, void (*f)(void *))
{
if (!f || lst == NULL)
return ;
while (lst)
{
(*f)(lst->content);
lst = lst->next;
}
}