aboutsummaryrefslogtreecommitdiff
path: root/c12/ex09/ft_list_foreach.c
diff options
context:
space:
mode:
Diffstat (limited to 'c12/ex09/ft_list_foreach.c')
-rw-r--r--c12/ex09/ft_list_foreach.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/c12/ex09/ft_list_foreach.c b/c12/ex09/ft_list_foreach.c
index e69de29..2c9705f 100644
--- a/c12/ex09/ft_list_foreach.c
+++ b/c12/ex09/ft_list_foreach.c
@@ -0,0 +1,20 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_list_foreach.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* 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 */
+/* */
+/* ************************************************************************** */
+
+void ft_list_foreach(t_list *begin_list, void (*f)(void *))
+{
+ while (begin_list != NULL)
+ {
+ (*f)(begin_list->data);
+ begin_list = begin_list->next;
+ }
+}