9 lines
150 B
C
9 lines
150 B
C
#include "libft.h"
|
|
|
|
void ft_lstunshift(t_list **lst, t_list *node)
|
|
{
|
|
if (!lst || !node)
|
|
return;
|
|
node->next = *lst;
|
|
*lst = node;
|
|
}
|