#include #include #include #include //################ Types de structures ############### typedef struct maillonDept { char dept[31]; int nbP; char respAd[31]; struct mailllonDept *suiv; }MaillonDept,*ListeDept; typedef struct { char nom[31]; ListeDept *lDept; }VilleIUT; //################ Fonctions communes ################# void clearpage(void); int rechercheIUT(VilleIUT *tiut[], int tLog, char ville[], int *trouve); //################ Fonction Menu ##################### void menuAdmin(VilleIUT *tiut[], int *tLog, int tMax); void menuCandidat(VilleIUT *tiut[], int *tLog, int tMax);