-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstmap.c
39 lines (35 loc) · 1.58 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lsauvage <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/27 14:26:36 by lsauvage #+# #+# */
/* Updated: 2017/11/27 16:52:04 by lsauvage ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** DESCRIPTION : Parcourt la liste lst en appliquant à chaque maillon la
** fonction f et crée une nouvelle liste “fraiche” avec malloc(3) résultant des
** applications successives. Si une allocation échoue, la fonction renvoie NULL.
**
** PARAM #1 : Pointeur sur le 1er maillon d'une liste.
** PARAM #2 : L’adresse d’une fonction à appliquer à chaque maillon de la liste
** pour créer une nouvelle liste.
**
** RETOUR : La nouvelle liste.
*/
t_list *ft_lstmap(t_list *lst, t_list *(*f)(t_list *elem))
{
t_list *new_list;
if (lst && *f)
{
new_list = f(lst);
if (new_list && lst->next)
new_list->next = ft_lstmap(lst->next, f);
return (new_list);
}
return (NULL);
}