-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstnew.c
40 lines (37 loc) · 1.37 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
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dbrophy <dbrophy@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/21 13:45:57 by dbrophy #+# #+# */
/* Updated: 2020/02/21 13:45:57 by dbrophy ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include "stdlib.h"
t_list *ft_lstnew(const void *content, size_t content_size)
{
t_list *res;
if (content == NULL)
content_size = 0;
res = (t_list*)malloc(sizeof(t_list));
if (res == NULL)
return (NULL);
if (content)
{
res->content = malloc(content_size);
if (res->content == NULL)
{
free(res);
return (NULL);
}
ft_memcpy(res->content, content, content_size);
}
else
res->content = NULL;
res->content_size = content_size;
res->next = NULL;
return (res);
}