20 lines
993 B
C
20 lines
993 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstadd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchivert <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/04/11 16:07:34 by tchivert #+# #+# */
|
|
/* Updated: 2019/09/04 05:13:27 by tchivert ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstadd(t_list **alst, t_list *new)
|
|
{
|
|
new->next = *alst;
|
|
*alst = new;
|
|
}
|