diff --git a/graphe/src/liste.c b/graphe/src/liste.c index a324406..969cad7 100644 --- a/graphe/src/liste.c +++ b/graphe/src/liste.c @@ -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; +} \ No newline at end of file