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

stk_peek #41

Open Sopadepuchero opened 3 months ago

Sopadepuchero commented 3 months ago

void stk_peek(t_stack stack) { if (stk_empty(stack)) return (NULL); return (stack->data); }