From 6500b1ca9ce911d3db7c94ee3f4ee38489b8861a Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 30 Jan 2020 20:24:32 +0100 Subject: Renaming t_list -> t_ftlst, changing feature adding by header --- src/lst/ft_lstpop_front.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lst/ft_lstpop_front.c') diff --git a/src/lst/ft_lstpop_front.c b/src/lst/ft_lstpop_front.c index f59c9b8..ff386f9 100644 --- a/src/lst/ft_lstpop_front.c +++ b/src/lst/ft_lstpop_front.c @@ -10,12 +10,12 @@ /* */ /* ************************************************************************** */ -#include #include "libft.h" +#include "libft_lst.h" -void ft_lstpop_front(t_list **lst, void (*del)(void *)) +void ft_lstpop_front(t_ftlst **lst, void (*del)(void *)) { - t_list *tmp; + t_ftlst *tmp; if (lst == NULL || *lst == NULL) return ; -- cgit