Files
ft_malloc/libft/ft_lstadd_front.c
2024-11-27 17:49:04 +01:00

20 lines
996 B
C
Executable File

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_front.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 15:51:22 by tomoron #+# #+# */
/* Updated: 2023/11/02 01:12:41 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_front(t_list **lst, t_list *new)
{
new->next = *lst;
*lst = new;
}