From d0c3ec2dc6968ac69b92969519e336e7f0fc43e5 Mon Sep 17 00:00:00 2001 From: Erwan MENAGER Date: Sun, 11 Dec 2022 21:35:04 +0100 Subject: [PATCH] Ajouter 'SAE2.h' --- SAE2.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 SAE2.h diff --git a/SAE2.h b/SAE2.h new file mode 100644 index 0000000..484d3fb --- /dev/null +++ b/SAE2.h @@ -0,0 +1,35 @@ +/** + *@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{ + + char ville[30]; + + int suiv; // Modifier par type MaillonDept* + +}ldept; + +typedef struct{ + + int maillon; // Modifier par type MaillonDept + +}ListeDept; + +typedef struct{ + + char ville[30]; + + ListeDept ldept; + +}VilleIUT; + + + +void menuPrincipal(void); + +void sousMenuAdministrateur(void); \ No newline at end of file