Nettoyage debug
This commit is contained in:
parent
a044cf8437
commit
9521101317
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue