libft_old/extended_libft/ft_lstadd_front.c
Willem Haffmans 326f52308e all
2024-07-26 22:32:04 +02:00

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;
}
}