20 lines
996 B
C
20 lines
996 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstadd_front.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/10/09 21:43:39 by erey-bet #+# #+# */
|
|
/* Updated: 2022/10/09 22:02:22 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstadd_front(t_list **lst, t_list *new)
|
|
{
|
|
new->next = *lst;
|
|
*lst = new;
|
|
}
|