aboutsummaryrefslogtreecommitdiff
path: root/src/lst/ft_lstclear.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lst/ft_lstclear.c')
-rw-r--r--src/lst/ft_lstclear.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lst/ft_lstclear.c b/src/lst/ft_lstclear.c
index ee1d9e5..0bacb4f 100644
--- a/src/lst/ft_lstclear.c
+++ b/src/lst/ft_lstclear.c
@@ -11,8 +11,9 @@
/* ************************************************************************** */
#include "libft.h"
+#include "libft_lst.h"
-void ft_lstclear(t_list **lst, void (*del)(void *))
+void ft_lstclear(t_ftlst **lst, void (*del)(void *))
{
if (lst == NULL)
return ;