8 lines
No EOL
103 B
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 |