@ -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;