11 lines
133 B
C
11 lines
133 B
C
#include "libft.h"
|
|
|
|
t_list *ft_lstpop(t_list **lst)
|
|
{
|
|
t_list *top;
|
|
|
|
top = *lst;
|
|
if (*lst)
|
|
*lst = (*lst)->next;
|
|
return (top);
|
|
}
|