-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_lstmap.c
executable file
·40 lines (37 loc) · 1.4 KB
/
ft_lstmap.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
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rel-fila <rel-fila@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/21 12:42:23 by rel-fila #+# #+# */
/* Updated: 2022/10/21 12:43:39 by rel-fila ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *))
{
t_list *new_list;
t_list *save;
if (!lst || !f || !del)
return (0);
new_list = ft_lstnew(f(lst->content));
if (!new_list)
return (0);
save = new_list;
lst = lst->next;
while (lst)
{
new_list->next = ft_lstnew(f(lst->content));
if (!new_list->next)
{
ft_lstclear(&save, del);
return (0);
}
new_list = new_list->next;
lst = lst->next;
}
new_list->next = NULL;
return (save);
}