blob: 3f7569a44b4f1a53ef5dfd7c71c177c1f2a9d28a (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */
/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
t_list
*ft_lstnew(void *content)
{
t_list *nlst;
nlst = (t_list*)ft_calloc(1, sizeof(t_list));
if (!nlst)
return (NULL);
nlst->content = content;
nlst->next = NULL;
return (nlst);
}
|