push_swap/libft/ft_lstnew.c
2024-04-20 14:48:16 +02:00

26 lines
1.1 KiB
C
Executable file

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/13 12:07:45 by rparodi #+# #+# */
/* Updated: 2024/03/06 12:15:50 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/push_swap.h"
t_list *ft_lstnew(int value)
{
t_list *new;
new = (t_list *) malloc(sizeof(*new));
if (!new)
return (NULL);
new->value = value;
new->index = -1;
new->next = NULL;
return (new);
}