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

27 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list_clear.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/03 15:08:22 by whaffman #+# #+# */
/* Updated: 2024/07/03 15:14:59 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_list.h"
void ft_list_clear(t_list *begin_list, void (*free_fct)(void *))
{
t_list *next;
while (begin_list)
{
free_fct(begin_list->data);
next = begin_list->next;
free(begin_list);
begin_list = next;
}
}