#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; }