TP5 exo4: coding style cleanups
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 11 Mar 2017 19:25:28 +0000 (20:25 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 11 Mar 2017 19:25:28 +0000 (20:25 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP5/exo4/liste_chainee.c

index c8f1463c7296e20edb35938489e273a5a551a2b4..a8589397a6aba3bf8da83b37936aedb2918203b3 100644 (file)
@@ -12,7 +12,7 @@ typedef struct cellule {
        struct cellule *suivant;
 } Cellule, *Liste;
 
-Cellule *creer_maillon(element e, Cellule * suivant)
+Cellule *creer_maillon(element e, Cellule *suivant)
 {
        Cellule *pnouveau = malloc(sizeof(Cellule));
        pnouveau->valeur = e;