42-archive/libftasm/ft_lstpop.c
Jack Halford 66900228ee ft_lstpop
2016-09-16 03:10:41 +02:00

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);
}