LeonorMalaga / gt_datalib

Práctica 2 del Taller de Git y GitHub de 42 Málaga
https://view.genial.ly/63a443410483340018b52bed/presentation-42-taller-de-git-y-github
0 stars 1 forks source link

dll_remove_first #17

Open LeonorMalaga opened 5 months ago

LeonorMalaga commented 5 months ago

void dll_remove_first(t_dlist *list) { t_dlist aux;

if (dll_empty(*list))
    return ;
aux = *list;
*list = (*list)->next;
if (*list)
    (*list)->prev = NULL;
free(aux);

}