-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstnew.c
36 lines (33 loc) · 1.31 KB
/
ft_lstnew.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.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mle-roy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2013/12/10 18:18:32 by mle-roy #+# #+# */
/* Updated: 2015/01/31 21:45:04 by mle-roy ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
t_list *ft_lstnew(void const *content, size_t content_size)
{
t_list *ret;
if ((ret = (t_list *)malloc(sizeof(*ret))) == NULL)
return (NULL);
if (content == NULL)
{
ret->content = NULL;
ret->content_size = 0;
}
else if ((ret->content = ft_memdup(content, content_size)) == NULL)
{
free(ret);
return (NULL);
}
else
ret->content_size = content_size;
ret->next = NULL;
return (ret);
}