24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstadd_front.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tosuman <timo42@proton.me> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/06/14 11:57:15 by tosuman #+# #+# */
|
|
/* Updated: 2023/06/14 11:57:15 by tosuman ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstadd_front(t_list **lst, t_list *new)
|
|
{
|
|
if (lst)
|
|
{
|
|
if (*lst)
|
|
new->next = *lst;
|
|
*lst = new;
|
|
}
|
|
}
|