libft/srcs/slist/ft_slist_empty.c

8 lines
No EOL
103 B
C

#if USE_SLIST
#include "libft.h"
int ft_slist_empty(t_slist *lst)
{
return (lst == NULL);
}
#endif