Mise à jour de 'graphe/src/liste.c'

master
Ada MARTINEK 1 month ago
parent ff8fb6e1af
commit 30aa92a43e

@ -113,3 +113,14 @@ void afficherList(Liste l)
afficherList(l->suiv);
}
Liste cope(Liste l)
{
Liste c = NULL;
while(l != NULL)
{
c = insList(c, l->v);
l = l->suiv;
}
return c;
}
Loading…
Cancel
Save