libft/srcs/slist/ft_slist_unshift.c

11 lines
No EOL
175 B
C

#if USE_SLIST
#include "libft.h"
void ft_slist_unshift(t_slist **lst, t_slist *node)
{
if (!lst || !node)
return;
node->next = *lst;
*lst = node;
}
#endif