diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-15 14:15:25 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-15 15:01:35 +0200 |
| commit | bebdb6929703ebdf9d3f65f19fd29780ac39cab3 (patch) | |
| tree | 158ced4ccae46cd537ec22e57cb361e1d3e1ebf5 /ft_lstadd_front_bonus.c | |
| parent | f23592ea0c122a0da2723d4253c47ca227529f79 (diff) | |
| download | libft-bebdb6929703ebdf9d3f65f19fd29780ac39cab3.tar.gz libft-bebdb6929703ebdf9d3f65f19fd29780ac39cab3.tar.bz2 libft-bebdb6929703ebdf9d3f65f19fd29780ac39cab3.zip | |
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.
Diffstat (limited to 'ft_lstadd_front_bonus.c')
| -rw-r--r-- | ft_lstadd_front_bonus.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
