-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstnew.c
37 lines (32 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edegraev <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/11 10:18:32 by edegraev #+# #+# */
/* Updated: 2023/11/13 14:22:15 by edegraev ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstnew(void *content)
{
t_list *new;
new = (t_list *)malloc(sizeof(t_list));
if (!new)
return (NULL);
new->content = content;
new->next = NULL;
return (new);
}
// #include <stdio.h>
// int main(void)
// {
// t_list *my_list;
// char *str;
// str = "Hello World!";
// my_list = ft_lstnew(str);
// printf("%s\n", (char *)my_list->content);
// return (0);
// }