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_lstadd_back.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lst/ft_lstadd_back.c') diff --git a/src/lst/ft_lstadd_back.c b/src/lst/ft_lstadd_back.c index 01eb00c..8f39a75 100644 --- a/src/lst/ft_lstadd_back.c +++ b/src/lst/ft_lstadd_back.c @@ -11,8 +11,9 @@ /* ************************************************************************** */ #include "libft.h" +#include "libft_lst.h" -void ft_lstadd_back(t_list **alst, t_list *new) +void ft_lstadd_back(t_ftlst **alst, t_ftlst *new) { if (alst == NULL) return ; -- cgit