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; + + + + + + +