-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathft_lstmap.c
45 lines (41 loc) · 1.6 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
41
42
43
44
45
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apuchill <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/07 17:37:39 by apuchill #+# #+# */
/* Updated: 2020/02/19 14:04:19 by apuchill ### ########.fr */
/* */
/* ************************************************************************** */
/*
** LIBRARY: N/A
** SYNOPSIS: apply function to content of all list's elements into new list
**
** DESCRIPTION:
** Iterates the list ’lst’ and applies the function ’f’ to the content of
** each element. Creates a new list resulting of the successive applications of
** the function ’f’. The ’del’ function is used to delete the content of an
** element if needed.
*/
#include "libft.h"
t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *))
{
t_list *new_lst;
t_list *elem;
if (!lst)
return (0);
new_lst = 0;
while (lst)
{
if (!(elem = ft_lstnew(f(lst->content))))
{
ft_lstclear(&new_lst, del);
return (0);
}
ft_lstadd_back(&new_lst, elem);
lst = lst->next;
}
return (new_lst);
}