diff options
| author | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-24 08:02:55 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@e-r6-p7.s19.be> | 2019-07-24 08:02:55 +0200 |
| commit | e7acdc820fefa41ae00a7c776388e3d17250a2e9 (patch) | |
| tree | 5604e51c0008088f25b2f5dfb9143a852dd079dd /c12/ex10 | |
| parent | 454d82f30e354e2629563822bac637e5eaa8e4ff (diff) | |
| download | piscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.tar.gz piscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.tar.bz2 piscine-e7acdc820fefa41ae00a7c776388e3d17250a2e9.zip | |
c12 passed, c13 start
Diffstat (limited to 'c12/ex10')
| -rw-r--r-- | c12/ex10/ft_list.h | 4 | ||||
| -rw-r--r-- | c12/ex10/ft_list_foreach_if.c | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/c12/ex10/ft_list.h b/c12/ex10/ft_list.h index 5a8dab5..7cecff1 100644 --- a/c12/ex10/ft_list.h +++ b/c12/ex10/ft_list.h @@ -6,12 +6,12 @@ /* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/09 14:33:17 by cacharle #+# #+# */ -/* Updated: 2019/07/19 08:27:25 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:20:47 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_LIST_H -#define FT_LIST_H +# define FT_LIST_H typedef struct s_list { diff --git a/c12/ex10/ft_list_foreach_if.c b/c12/ex10/ft_list_foreach_if.c index 944e31b..4fd6d73 100644 --- a/c12/ex10/ft_list_foreach_if.c +++ b/c12/ex10/ft_list_foreach_if.c @@ -6,14 +6,20 @@ /* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/19 08:31:11 by cacharle #+# #+# */ -/* Updated: 2019/07/19 08:34:48 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:44:03 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ -void ft_list_foreach_if(t_list *begin_list, void (*f)(void *), void - *data_ref, int (*cmp)()) +#include <stdlib.h> +#include "ft_list.h" + +void ft_list_foreach_if(t_list *begin_list, void (*f)(void *), + void *data_ref, int (*cmp)()) { while (begin_list != NULL) + { if ((*cmp)(begin_list->data, data_ref) == 0) (*f)(begin_list->data); + begin_list = begin_list->next; + } } |
