From bebdb6929703ebdf9d3f65f19fd29780ac39cab3 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 15 Oct 2019 14:15:25 +0200 Subject: Removed libft_bonus.h bonus rule in Makefile remove guard close in libft.h to declare t_list struct and ft_lst* prototypes. Fixed ft_lstclear with recursion. --- ft_lstadd_front_bonus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ft_lstadd_front_bonus.c') diff --git a/ft_lstadd_front_bonus.c b/ft_lstadd_front_bonus.c index 7fe99de..a29c5c2 100644 --- a/ft_lstadd_front_bonus.c +++ b/ft_lstadd_front_bonus.c @@ -10,7 +10,7 @@ /* */ /* ************************************************************************** */ -#include "libft_bonus.h" +#include "libft.h" void ft_lstadd_front(t_list **alst, t_list *new) { -- cgit