Nettoyage debug

This commit is contained in:
adriy 2017-05-19 09:16:49 +00:00
parent a044cf8437
commit 9521101317
1 changed files with 1 additions and 2 deletions

View File

@ -160,7 +160,6 @@ int main()
localiserFichiersClients(&fichierClient); localiserFichiersClients(&fichierClient);
nbrClient = nombreClients(&fichierClient); nbrClient = nombreClients(&fichierClient);
recupererClients(&fichierClient, &clientTab); recupererClients(&fichierClient, &clientTab);
afficherListeClients(clientTab);
while(w) while(w)
{ {
if(clientTab) if(clientTab)
@ -1200,7 +1199,7 @@ Bool rechercheClientArray(char *nom, char * prenom, Client ** clients, Bool tri)
} }
else else
{ {
while (*clients && compNP(nom, prenom, (*clients)->nom, (*clients)->prenom) && *(++clients) && printf("%s\n", (*clients)->prenom)); while (*clients && compNP(nom, prenom, (*clients)->nom, (*clients)->prenom) && *(++clients));
if(!(*clients)) if(!(*clients))
return FALSE; return FALSE;
else else