From c73c541621f0567c511bbcac4a0bf40e116c53d7 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 7 Oct 2019 21:06:30 +0200 Subject: WIP bonus list --- ft_lstiter.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ft_lstiter.c (limited to 'ft_lstiter.c') diff --git a/ft_lstiter.c b/ft_lstiter.c new file mode 100644 index 0000000..ef19bf8 --- /dev/null +++ b/ft_lstiter.c @@ -0,0 +1,6 @@ +#include "libft.h" + +void ft_lstiter(t_list *lst, void (*f)(t_list *elem)) +{ + +} -- cgit