Mise à jour de 'Msae.h'

master
Maël DAIM 2 years ago
parent 60fa9a2a15
commit 8fa0b8e59a

@ -115,7 +115,10 @@ void menuAdmin(VilleIUT *tiut[], int *tLog, int tMax, int *phaseCandidature);
void menuCandidat(VilleIUT *tiut[], int *tLog, int tMax,Candidat *tCand[],int tMaxC,int posC,int phaseCandidature); void menuCandidat(VilleIUT *tiut[], int *tLog, int tMax,Candidat *tCand[],int tMaxC,int posC,int phaseCandidature);
void clearpage(void); void clearpage(void);
void globale(void); void globale(void);
void menuResp(Candidat *tCand[],int tMax,int phaseCandidature);
/*Pour menuResp*/
FileCand insertCroiFile(Candidat *tCand[],int tMax,float mini);
FileCand fileToAdmis(FileCand f, ListeCand *l, int nbAdmis);
// ########################################################################################### // ###########################################################################################
// ########################################################################################### // ###########################################################################################
@ -162,7 +165,7 @@ int rechercherCandidat(Candidat *tCand[], int tMax, int numeroC, int *trouve);
Candidat ** creerCandidat(Candidat *tCand[], int *tMax,int *pos); Candidat ** creerCandidat(Candidat *tCand[], int *tMax,int *pos);
Choix ** insererChoix(Choix *tChoix[], int *nombreChoix); Choix ** insererChoix(Choix *tChoix[], int *nombreChoix);
Choix ** supprimerChoix(Choix *tChoix[], int *nombreChoix); Choix ** supprimerChoix(Choix *tChoix[], int *nombreChoix);
void miseAJourChoixCand(Choix *tChoix[], int nombreChoix); int miseAJourChoixCand(Choix *tChoix[], int nombreChoix);
/* Fonctions globale, menus*/ /* Fonctions globale, menus*/
void globale2(void); void globale2(void);
@ -178,3 +181,15 @@ Candidat * tete(FileCand f);
int longueurFile(FileCand f); int longueurFile(FileCand f);
int positionFileAttente(FileCand f, int numeroC); int positionFileAttente(FileCand f, int numeroC);
bool videFile(FileCand f); bool videFile(FileCand f);
/* Fonctions de liste d'admission */
ListeCand listeCandNouv(void);
ListeCand insererCandEntete(ListeCand lCand,Candidat *c);
ListeCand insererCand(ListeCand lCand, Candidat *c);
ListeCand supprimerCandEntete(ListeCand lCand);
ListeCand supprimerCand(ListeCand lCand, Candidat *c);
int longueurListe(ListeCand lCand);
bool videListe(ListeCand lCand);
ListeCand rechercherCandListe(ListeCand lCand, int numeroC, int *trouve);
void afficher(FileCand f);

Loading…
Cancel
Save