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.

40 lines
565 B

/**
*@file : SAE2.h
*@author : Erwan.M
*@date : 11/12/22
* sujet : SAE 1.02
*@brief : Résumé : Fichier .h regroupant les fonctions utilisées dans SAE2.c
*/
typedef struct maillon{
char departement[32];
int nbP;
char nomResp[22];
struct maillon *suiv;
}MaillonDept, *ListeDept;
typedef struct{
char ville[30];
ListeDept ldept;
}VilleIUT;
void menuPrincipal(void);
void sousMenuAdministrateur(void);
int fonctionChoix(void);
void affichageSousMenuUtilisateur(void);
void switchUtilisateur(int choix);
void sousMenuUtilisateur(void);