13 lines
206 B
C
13 lines
206 B
C
#include "libft.h"
|
|
|
|
t_list *ft_lstshift(t_list **lst)
|
|
{
|
|
t_list *first;
|
|
|
|
if (!lst || !*lst)
|
|
return NULL;
|
|
first = *lst;
|
|
*lst = first->next;
|
|
first->next = NULL;
|
|
return first;
|
|
}
|