Ajustements.

master
Yann CHAMPEAU 3 years ago
parent aaf93cc05a
commit 3d1e3f6520

@ -162,12 +162,12 @@ void ListeCandidat(int nbcandidat,candidat *tcandidat[])
printf("Candidat non trouvé");
}
void Candidater(VilleIUT* tiut[],int *tlogi, candidat* tcandidat[], int numcandid)
void Candidater(VilleIUT* tiut[],int tlogi, candidat* tcandidat[], int numcandid)
{
char VilleRech[31];
printf("Veuillez entrez la ville de l'IUT au quel vous souhaitez candidatez :");
scanf("%s",VilleRech);
int ind=rechercheIUT(tiut,*tlogi,VilleRech);
int ind=rechercheIUT(tiut,tlogi,VilleRech);
if(ind==-1) return;
else
{

@ -116,7 +116,7 @@ void ListeCandidat(int nbcandidat,candidat *tcandidat[]);
* \param [in,out] tcandidat Tableau contenant les candidats.
* \param [in] numcandid numéro du candidat à chercher.
*/
void Candidater(VilleIUT* tiut[],int *tlogi, candidat* tcandidat[],int numcandid);
void Candidater(VilleIUT* tiut[],int tlogi, candidat* tcandidat[],int numcandid);
/*
Permet de candidater dans un IUT
Entrée :

Loading…
Cancel
Save