|
|
@ -7,12 +7,13 @@
|
|
|
|
void global(void);
|
|
|
|
void global(void);
|
|
|
|
|
|
|
|
|
|
|
|
/* Menus */
|
|
|
|
/* Menus */
|
|
|
|
void menu(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats, bool *phaseCandidatures, bool *phaseTraitement);
|
|
|
|
void menu(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats, bool *phaseCandidatures, bool *phaseTraitement, Etudiant *tetudAdmis[], int *nbEtudAdmis, Etudiant *tetudAttente[], int *nbEtudAttente);
|
|
|
|
void menuAdministrateur(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats, bool *phaseCandidatures, bool *phaseTraitement);
|
|
|
|
void menuAdministrateur(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats, bool *phaseCandidatures, bool *phaseTraitement);
|
|
|
|
void menuUtilisateur(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats);
|
|
|
|
void menuUtilisateur(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats);
|
|
|
|
void menuCandidat(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats);
|
|
|
|
void menuCandidat(VilleIUT *tiut[], int *nbIUT, Etudiant *tetud[], int *nbCandidats);
|
|
|
|
void menuResponsable(Etudiant *tetud[], int nbCandidats, VilleIUT *tiut[], int *nbIUT);
|
|
|
|
void menuResponsable(Etudiant *tetud[], int nbCandidats, VilleIUT *tiut[], int *nbIUT);
|
|
|
|
void menuAffichage(Etudiant *tetud[], int nbCandidats, VilleIUT *tiut[], int *nbIUT);
|
|
|
|
void menuAffichage(Etudiant *tetud[], int nbCandidats, VilleIUT *tiut[], int *nbIUT, Etudiant *tetudAdmis[], int *nbEtudAdmis, Etudiant *tetudAttente[], int *nbEtudAttente);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Partie 1 */
|
|
|
|
/* Partie 1 */
|
|
|
|
/* Fichier */
|
|
|
|
/* Fichier */
|
|
|
@ -75,8 +76,9 @@ int inscription(Etudiant *tetud[], int nbCandidats, VilleIUT *tiut[], int nbVill
|
|
|
|
// int menuUtilisateur(ListeUtilisateurs listeUtilisateurs);
|
|
|
|
// int menuUtilisateur(ListeUtilisateurs listeUtilisateurs);
|
|
|
|
// void global(void);
|
|
|
|
// void global(void);
|
|
|
|
|
|
|
|
|
|
|
|
int plusGrand(Etudiant *tetudResp[], int nbCandResp);
|
|
|
|
int plusPetit(Etudiant *tetudResp[], int nbCandResp);
|
|
|
|
void echanger(Etudiant *tetudResp[], int i, int j);
|
|
|
|
void echanger(Etudiant *tetudResp[], int i, int j);
|
|
|
|
void triNote(Etudiant *tetudResp[], int nbCandResp);
|
|
|
|
void triNote(Etudiant *tetudResp[], int nbCandResp);
|
|
|
|
void deptResp(VilleIUT *tiut[], int nbVilles, char respVille[], char respIUT[]);
|
|
|
|
void deptResp(VilleIUT *tiut[], int nbVilles, char respVille[], char respIUT[]);
|
|
|
|
int chargementRespDept(Etudiant *tetud[], int nbCand, char respVille[], char respIUT[], Etudiant *tetudResp[]);
|
|
|
|
int chargementRespDept(Etudiant *tetud[], int nbCand, char respVille[], char respIUT[], Etudiant *tetudResp[]);
|
|
|
|
|
|
|
|
void lancerAdmissions(Etudiant *tetudResp[], int nbCandResp, Etudiant *tetudAdmis[], int *nbEtudAdmis, Etudiant *tetudAttente[], int *nbEtudAttente, char ville[], char dept[]);
|