From b349bdd04c1933e640de99cd5e76f50e541e4c9c Mon Sep 17 00:00:00 2001 From: Alexis LAURENT Date: Thu, 15 Dec 2022 09:11:50 +0100 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20des=20structure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SAE.c | 5 ++++- SAE.h | 21 ++++++++++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/SAE.c b/SAE.c index 9ff7db0..eb01f34 100644 --- a/SAE.c +++ b/SAE.c @@ -1 +1,4 @@ -#include "SAE.h" \ No newline at end of file +#include "SAE.h" + + + diff --git a/SAE.h b/SAE.h index 9ff7db0..9b9159b 100644 --- a/SAE.h +++ b/SAE.h @@ -1 +1,20 @@ -#include "SAE.h" \ No newline at end of file +#include +#include +#include +#include + +typedef struct +{ + char ville[30]; + MaillonDept *idDept; +}VilleIUT; + +typedef struct maillon +{ + char departement[30]; + int nbPers; + char responsable[30]; + maillon *suiv; +}MaillonDept; + +