From d1df1ce5e50feb147850be94e120a32207905272 Mon Sep 17 00:00:00 2001 From: "jade.van_brabandt" Date: Wed, 11 Jan 2023 15:42:15 +0100 Subject: [PATCH] Oui --- src/partie2/saeP2.c | 1 + src/partie2/saeP2.h | 16 ---------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/src/partie2/saeP2.c b/src/partie2/saeP2.c index b7b5b20..0e29e1e 100644 --- a/src/partie2/saeP2.c +++ b/src/partie2/saeP2.c @@ -4,6 +4,7 @@ #include "saeP2.h" #include #include "../annexe/saeAnnexe.h" +#include "../partie1/saeP1.h" candidat* LoadCandid(void) { diff --git a/src/partie2/saeP2.h b/src/partie2/saeP2.h index 121eaa0..0a22b0a 100644 --- a/src/partie2/saeP2.h +++ b/src/partie2/saeP2.h @@ -17,22 +17,6 @@ typedef struct voeu* TabVoeu[20]; }candidat; -//FIX TEMPORAIRE EN ATTENDANT DE TROUVER MIEUX -typedef struct MaillonDep -{ - char departement[31]; - int nbp; - char resp[51]; - struct MaillonDep* suivant; -} MaillonDep; - -typedef struct -{ - char Ville[31]; - MaillonDep* ldept; -} VilleIUT; -// FIN FIX TEMP - candidat* LoadCandid(void); void SaveCandid(int nbcandidat,candidat *tcandidat); void RechercheCandidat(int ID, int nbcandidat,candidat* tcandidat);