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.

41 lines
718 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);///A CHANGER///
//void creerDep();
//void supprimerDep();
//void gestionPhaseCandidatures();
//void modifNomResponsable();