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_first #40

Closed LeonorMalaga closed 3 months ago

LeonorMalaga commented 3 months ago

t_dlist dll_first(t_dlist list) { while (list && list->prev) list = list->prev; return (list); }