/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2020/11/14 21:06:17 by djonker #+# #+# */ /* Updated: 2023/10/18 17:08:58 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; int size; size = ft_lstsize(NULL); r = 0; if (size != 0) r = 1; return (r); }