From 025f4abbabf522dc5840190b438fced0ebab6da7 Mon Sep 17 00:00:00 2001 From: "yann.champeau" Date: Thu, 29 Dec 2022 11:55:29 +0100 Subject: [PATCH] =?UTF-8?q?Ajustement=20des=20d=C3=A9finitions=20de=20stru?= =?UTF-8?q?ctures.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/partie1/saeP1.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/partie1/saeP1.h b/src/partie1/saeP1.h index eb25961..faceabd 100644 --- a/src/partie1/saeP1.h +++ b/src/partie1/saeP1.h @@ -1,18 +1,16 @@ //Structure -typedef struct MaillonDep -{ +typedef struct MaillonDep { char departement[31]; int nbp; char resp[51]; struct MaillonDep* suivant; -}MaillonDep; +} MaillonDep; -typedef struct -{ +typedef struct { char Ville[31]; MaillonDep* ldept; -}VilleIUT; +} VilleIUT; //Consultant