From ce596a97de2f48e674033ab9643a28c5f96820c3 Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Thu, 12 Jan 2023 01:26:41 +0100 Subject: [PATCH] Ajout noteMinimale au MaillonDept --- src/structures.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structures.h b/src/structures.h index 8da6a47..2290052 100644 --- a/src/structures.h +++ b/src/structures.h @@ -5,6 +5,7 @@ typedef struct MaillonDept { char departement[LEN_MAX]; int nbP; char responsable[LEN_MAX]; + float noteMinimale; // Ajout Partie III struct MaillonDept* suiv; } MaillonDept;