From b61b2de79ad386ef2392de3999e3c87da1ad6093 Mon Sep 17 00:00:00 2001 From: keraudre Date: Thu, 23 Nov 2023 21:19:38 +0100 Subject: [PATCH] modification du nom des fichiers --- prog/{plateau.c => plateauinit.c} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename prog/{plateau.c => plateauinit.c} (97%) diff --git a/prog/plateau.c b/prog/plateauinit.c similarity index 97% rename from prog/plateau.c rename to prog/plateauinit.c index 8bdd3e2..e77f80a 100644 --- a/prog/plateau.c +++ b/prog/plateauinit.c @@ -11,7 +11,7 @@ #define NBR_POMME 5 #define TAILLE_SERPENT 10 -int* plateau(void) { +int* plateauinit(void) { int tableau[LIGNES][COLONNES] = {0}, ligne_pomme, colonne_pomme, i, i2, compteur = 0 ;