/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.c |o_o || | */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2020/11/14 21:06:17 by djonker #+# #+# */ /* Updated: 2023/03/04 01:58:06 by houtworm \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; t_list **list; list = NULL; r = 0; ft_lstclear(list, &free); if (list != NULL) r = 1; return (r); }