From 41b5dd38b59b3dff1ed13d86d5b505b721472877 Mon Sep 17 00:00:00 2001 From: Louis LABORIE Date: Thu, 15 Dec 2022 09:11:41 +0100 Subject: [PATCH] test commit --- SAEl.c | 1 + SAEl.h | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 SAEl.c create mode 100644 SAEl.h diff --git a/SAEl.c b/SAEl.c new file mode 100644 index 0000000..9ff7db0 --- /dev/null +++ b/SAEl.c @@ -0,0 +1 @@ +#include "SAE.h" \ No newline at end of file diff --git a/SAEl.h b/SAEl.h new file mode 100644 index 0000000..8eb4ecd --- /dev/null +++ b/SAEl.h @@ -0,0 +1,26 @@ +#include +#include +#include + + +typedef struct maillondept { + char departement[30]; + int nbPlaces; + char nom[30]; + struct maillondept* suiv; +}MaillonDept; + + +typedef MaillonDept* ListeDept; + +typedef struct { + char ville[30]; + ListeDept idDept; +}VilleIUT; + + + + + + +