blob: 9f796a4b049bc14258ed51b1c4e5e009cf649f5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ref_ft_list_push_front.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/08 03:20:23 by cacharle #+# #+# */
/* Updated: 2020/04/13 15:01:09 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libasm_test.h"
void ref_ft_list_push_front(t_list **begin_list, void *data)
{
if (begin_list == NULL)
return ;
t_list *new = malloc(sizeof(t_list));
if (new == NULL)
return ;
new->data = data;
new->next = *begin_list;
*begin_list = new;
}
|