cub3d/libft/src/ft_lstadd_front.c
2023-10-26 19:11:30 +02:00

24 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstadd_front.c :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/13 04:38:37 by djonker #+# #+# */
/* Updated: 2023/10/18 16:59:52 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_lstadd_front(t_list **lst, t_list *new)
{
if (lst && new)
{
if (*lst)
new->next = *lst;
*lst = new;
}
}