/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2020/11/14 21:06:17 by djonker #+# #+# */ /* Updated: 2023/10/18 17:08:45 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; t_list **list; t_list *element[1]; char *str[1]; str[0] = strdup("Hallo"); element[0] = ft_lstnew(str[0]); list = &element[0]; ft_lstadd_back(list, element[0]); r = 0; if (element[0]->next) r = 1; ft_lstclear(list, &free); return (r); }