aboutsummaryrefslogtreecommitdiff
path: root/c12/ex09
diff options
context:
space:
mode:
Diffstat (limited to 'c12/ex09')
-rw-r--r--c12/ex09/ft_list.h2
-rw-r--r--c12/ex09/ft_list_foreach.c7
2 files changed, 6 insertions, 3 deletions
diff --git a/c12/ex09/ft_list.h b/c12/ex09/ft_list.h
index 8f3a487..c46b6e5 100644
--- a/c12/ex09/ft_list.h
+++ b/c12/ex09/ft_list.h
@@ -6,7 +6,7 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/09 14:33:17 by cacharle #+# #+# */
-/* Updated: 2019/07/19 08:27:40 by cacharle ### ########.fr */
+/* Updated: 2019/07/23 15:18:29 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
diff --git a/c12/ex09/ft_list_foreach.c b/c12/ex09/ft_list_foreach.c
index 2c9705f..15fe1ef 100644
--- a/c12/ex09/ft_list_foreach.c
+++ b/c12/ex09/ft_list_foreach.c
@@ -6,11 +6,14 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/19 08:29:57 by cacharle #+# #+# */
-/* Updated: 2019/07/19 08:31:03 by cacharle ### ########.fr */
+/* Updated: 2019/07/23 15:43:14 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
-void ft_list_foreach(t_list *begin_list, void (*f)(void *))
+#include <stdlib.h>
+#include "ft_list.h"
+
+void ft_list_foreach(t_list *begin_list, void (*f)(void *))
{
while (begin_list != NULL)
{