42-archive/nm-otool/libft2/srcs/lst/ft_lst_pop.c
2017-10-07 17:49:14 +02:00

11 lines
142 B
C

#include "libft.h"
t_list *ft_lst_pop(t_list **lst)
{
t_list *top;
top = *lst;
if (lst && *lst)
*lst = (*lst)->next;
return (top);
}