Files
Corewar-Final/libft/libft/ft_lstadd.c
Jeremy FLEURY 748d10f4f3 push
2019-07-17 11:22:24 +02:00

22 lines
1022 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jfleury <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/14 16:31:08 by jfleury #+# #+# */
/* Updated: 2019/05/15 19:49:23 by allefebv ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd(t_list **alst, t_list *new)
{
if (new == NULL)
return ;
new->next = *alst;
*alst = new;
}