- The documentation on the header allow u to see on the files where the header is inclued
25 lines
1 KiB
C
25 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstadd_front.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/12 11:40:16 by rparodi #+# #+# */
|
|
/* Updated: 2025/09/05 16:14:05 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "list.h"
|
|
#include <unistd.h>
|
|
|
|
void ft_lstadd_front(t_list **lst, t_list *new)
|
|
{
|
|
if (*lst == NULL)
|
|
{
|
|
*lst = new;
|
|
return ;
|
|
}
|
|
new->next = *lst;
|
|
*lst = new;
|
|
}
|