-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_lstnew.c
38 lines (32 loc) · 1.21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: josfelip <josfelip@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/07 18:33:05 by josfelip #+# #+# */
/* Updated: 2023/08/07 19:45:04 by josfelip ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstnew(void *content)
{
t_list *new;
new = malloc(sizeof(t_list));
if (!new)
return (NULL);
new->content = content;
new->next = NULL;
return (new);
}
/* #include <stdio.h>
int main(void)
{
t_list *new;
char *str;
str = "";
new = ft_lstnew(str);
printf("%s\n", (char *)new->content);
return (0);
} */