You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
739 B

//Structure
typedef struct MaillonDep
{
char departement[31];
int nbp;
char resp[51];
struct MaillonDep* suivant;
}MaillonDep;
typedef struct
{
char Ville[31];
MaillonDep* ldept;
}VilleIUT;
//Consultant
void menuUser(VilleIUT* lvIUT[],int tlogi);
void SearchCityWithIUT(VilleIUT* lvIUT[], int tlogi);
void DepEachIUT(VilleIUT* lvIUT[], int tlogi);
void SearchPlaceFromDepInIUT(VilleIUT* lvIUT[],int tlogi);
void SearchIUTFromDep(VilleIUT* lvIUT[],int tlogi);
//Admin
void menuAdmin(VilleIUT* tiut[],int tlogi);
void modifPlaces(VilleIUT* tiut[],int tlogi);
void creerDep(VilleIUT* tiut[],int tlogi);
void supprimerDep(VilleIUT* tiut[],int tlogi);
void modifNomResponsable(VilleIUT* tiut[],int tlogi);