pushswap/libft/tests/bonus/lstnew/test3.c
2023-10-26 19:09:02 +02:00

29 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test3.c :+: :+: */
/* +:+ */
/* By: djonker <djonker@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/14 21:06:17 by djonker #+# #+# */
/* Updated: 2023/10/18 17:08:56 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
int main(void)
{
int r;
t_list *list;
r = 0;
list = ft_lstnew(NULL);
if (list->content)
r = 1;
free (list);
return (r);
}