26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* ft_lstnew.c :+: :+: */
|
|
/* +:+ */
|
|
/* By: djonker <marvin@codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2020/11/13 04:38:37 by djonker #+# #+# */
|
|
/* Updated: 2023/10/18 16:59:54 by houtworm ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../libft.h"
|
|
|
|
t_list *ft_lstnew(void *content)
|
|
{
|
|
t_list *r;
|
|
|
|
r = malloc(sizeof(t_list));
|
|
if (r == NULL)
|
|
return (NULL);
|
|
r->content = content;
|
|
r->next = NULL;
|
|
return (r);
|
|
}
|