#include #include #include #include //######### Définition des types ############# typedef struct maillonDept { char dept[31]; int nbP; char respAd[31]; struct mailllonDept *suiv; }MaillonDept,*ListeDept; typedef struct { char nom[31]; ListeDept lDept; }VilleIUT; //########## fonction commune ############### int login(void); void globale(void); void clearpage(void); //########## fonction affichage ############## void afficherPlace(MaillonDept m); //########## fonction admin ################# int insererDept(VilleIUT v, MaillonDept m); //######### fonction recherche ############## MaillonDept* rechercheDept(ListeDept lDept, int *trouve, char nom[ ] ); int rechercheIUT(VilleIUT *tiut[], int tLog, char ville[], int *trouve);