-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstmap.c
31 lines (28 loc) · 1.2 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vportell <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/03 14:09:01 by vportell #+# #+# */
/* Updated: 2016/11/04 20:37:49 by vportell ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstmap(t_list *lst, t_list *(*f)(t_list *elem))
{
t_list *new;
t_list *prev;
if (!lst || !(new = ft_lstnew(lst->content, lst->content_size)))
return (NULL);
new = f(lst);
prev = new;
while (lst->next)
{
prev->next = f(lst->next);
prev = prev->next;
lst = lst->next;
}
return (new);
}