23 lines
1014 B
C
23 lines
1014 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstadd_front.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/07/05 18:42:05 by whaffman #+# #+# */
|
|
/* Updated: 2024/07/10 16:35:22 by whaffman ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstadd_front(t_list **lst, t_list *new)
|
|
{
|
|
if (new)
|
|
{
|
|
new->next = *lst;
|
|
*lst = new;
|
|
}
|
|
}
|