-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstmap_bonus.c
35 lines (32 loc) · 1.22 KB
/
ft_lstmap_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wboutzou <wboutzou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/24 18:04:27 by wboutzou #+# #+# */
/* Updated: 2021/11/24 18:04:28 by wboutzou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *))
{
t_list *new;
t_list *temp;
new = NULL;
if (!lst || !f)
return (0);
while (lst != NULL)
{
temp = ft_lstnew(f(lst->content));
if (!temp)
{
ft_lstclear(&new, del);
return (0);
}
ft_lstadd_back(&new, temp);
lst = lst->next;
}
return (new);
}