libft/srcs/lst/ft_lstempty.c

6 lines
No EOL
78 B
C

#include "libft.h"
int ft_lstempty(t_list *lst)
{
return (lst == NULL);
}