/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstnew.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/03 14:57:24 by jhalford #+# #+# */ /* Updated: 2016/11/28 19:25:25 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" t_list *ft_lstnew(void const *content, size_t content_size) { t_list *new; if (!(new = (t_list *)malloc(sizeof(*new)))) return (NULL); new->next = NULL; new->content_size = content_size; new->content = ft_memalloc(content_size + 1); if (content) ft_memcpy(new->content, content, content_size); return (new); }