X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TP5%2Fexo4%2Fliste_chainee.c;h=a8589397a6aba3bf8da83b37936aedb2918203b3;hb=7b0cef36a5458d18b5288d761eafa15bbc50a785;hp=d8ae698a48a8140a3a69afd1ecdc5589fd72bcbf;hpb=940a20a431b7e389ae03b541264f9b751dd091fc;p=Algorithmic_C.git diff --git a/TP5/exo4/liste_chainee.c b/TP5/exo4/liste_chainee.c index d8ae698..a858939 100644 --- a/TP5/exo4/liste_chainee.c +++ b/TP5/exo4/liste_chainee.c @@ -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; @@ -229,3 +229,4 @@ int main() } /****************************************************************************/ +/* vim:noet:ts=8:sw=8:textwidth=80 */