From 77f4a617342f15ec15b08e70977a238502d0909a Mon Sep 17 00:00:00 2001 From: Sami GHEBRID Date: Fri, 16 Dec 2022 14:02:07 +0100 Subject: [PATCH] =?UTF-8?q?afficherVille=20termin=C3=A9=2016/12=2014h02?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ssae.c | 7 +++++++ Ssae.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Ssae.c b/Ssae.c index 03c168b..902d97a 100644 --- a/Ssae.c +++ b/Ssae.c @@ -55,3 +55,10 @@ int rechercheIUT(VilleIUT *tiut[], int tLog, char ville[], int *trouve){ } } + +void afficherVille(VilleIUT v){ + printf("%s",v.nom); +} + + + diff --git a/Ssae.h b/Ssae.h index 883434d..dce6a34 100644 --- a/Ssae.h +++ b/Ssae.h @@ -10,7 +10,7 @@ typedef struct maillonDept char dept[31]; int nbP; char respAd[31]; - struct mailllonDept *suiv; + struct maillonDept *suiv; }MaillonDept,*ListeDept;