diff --git a/src/annexe/saeAnnexe.c b/src/annexe/saeAnnexe.c index 4b114e4..62be486 100644 --- a/src/annexe/saeAnnexe.c +++ b/src/annexe/saeAnnexe.c @@ -111,6 +111,7 @@ void tabcpy(int tabS[], int tabD[], int tlogi){ int existeDep(MaillonDep* liste, char* dep){ MaillonDep* m=liste; while(m->suivant!=NULL){ + printf("%s, %s\n",m->departement,dep); if(!strcmp(m->departement,dep)){ return 1; } diff --git a/src/partie1/saeP1.c b/src/partie1/saeP1.c index 20425ab..3452eeb 100644 --- a/src/partie1/saeP1.c +++ b/src/partie1/saeP1.c @@ -350,7 +350,7 @@ void modifNomResponsable(VilleIUT* tiut[],int tlogi){ return; } VilleIUT* v=tiut[noVille]; - printf("\n\nEntrez le département à modifier:"); + printf("\n\nEntrez le département à modifier :"); char dep[31]; scanf("%*c%s",dep); if(!existeDep(v->ldept,dep)){