-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstnew_bonus.c
36 lines (31 loc) · 1.49 KB
/
ft_lstnew_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
36
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dolvin17 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/02 13:36:44 by ghuertas #+# #+# */
/* Updated: 2022/04/21 00:13:12 by dolvin17 ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdio.h>
/* reserva con malloc y devuelve un elemento nuevo */
t_list *ft_lstnew(void *content)
{
t_list *node;
node = malloc(sizeof(t_list));// reservo la memoria para el nuevo nodo.
if (!node)//si falla la reserva
return (NULL);
node->content = content; // sino en el elemento al que apunto con node, se va a guardar el contenido del nuevo nodo que intento crear.
node->next = NULL; //lo que apunte despues, será la referencia al final (NULL)
return (node);//devuelvo el nodo creado.
}
/*
int main(void)
{
t_list *cat;
cat = ft_lstnew("I love cats");
printf("%p", cat->content);
}*/