/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2020/11/14 21:06:17 by djonker #+# #+# */ /* Updated: 2023/10/18 17:08:48 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #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); }