libft/srcs/ft_lstadd.c
Tanguy MAZE 9f04f49de6 siffler en travaillant ! =*
libft cleanup
2019-03-23 17:13:46 +01:00

20 lines
993 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 19:26:05 by tmaze #+# #+# */
/* Updated: 2018/04/08 19:27:35 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd(t_list **alst, t_list *new)
{
new->next = *alst;
*alst = new;
}