From c7f7d135b0f3b185101d5d961e766f5ff081e39a Mon Sep 17 00:00:00 2001 From: "matheo.thierry" Date: Wed, 14 Dec 2022 15:39:47 +0100 Subject: [PATCH] MODIF correction struct --- sae1-02.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sae1-02.h b/sae1-02.h index 3674c83..ac01c1d 100644 --- a/sae1-02.h +++ b/sae1-02.h @@ -16,12 +16,12 @@ typedef struct listville{ char departement[31]; int nbplace; char responsable[31]; - struct list* suivant; -}MaillonDept; + struct listville* suivant; +}MaillonDept, *Listdept; typedef struct VilleIUT{ char Ville[31]; - struct list* Idept; + Listdept ldept; }Maillon;