fractol/libft/tests/bonus/lstclear/test5.c
2023-03-07 05:31:00 +01:00

29 lines
1.1 KiB
C

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