aboutsummaryrefslogtreecommitdiff
path: root/functions_reference/ref_ft_list_push_front.c
blob: 821247de735e0021e3c373480240aaea7ae7d907 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libasm_test.h"

void
ref_ft_list_push_front(t_list **begin_list, void *data)
{

	if (begin_list == NULL || data == NULL)
		return ;
	data->next = *begin_list;
	*begin_list = data;
}