piscine/c12/ex09/ft_list_foreach.c
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list_foreach.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/03 15:39:22 by whaffman #+# #+# */
/* Updated: 2024/07/03 15:43:05 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_list.h"
void ft_list_foreach(t_list *begin_list, void (*f)(void *))
{
while (begin_list)
{
(*f)(begin_list->data);
begin_list = begin_list->next;
}
}