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