TP5 exo4: coding style cleanups
[Algorithmic_C.git] / 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;