From 8fb24ed205dab03a858f0ae1106194da7bffede9 Mon Sep 17 00:00:00 2001 From: "yann.champeau" Date: Mon, 26 Dec 2022 18:46:43 +0100 Subject: [PATCH] =?UTF-8?q?Initialisation=20de=20la=20future=20fonction=20?= =?UTF-8?q?permettant=20de=20g=C3=A9rer=20la=20phase=20de=20candidature.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/partie2/saeP2.c | 6 +++++- src/partie2/saeP2.h | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/partie2/saeP2.c b/src/partie2/saeP2.c index 844d056..032da47 100644 --- a/src/partie2/saeP2.c +++ b/src/partie2/saeP2.c @@ -62,4 +62,8 @@ candidat* LoadCandid(void) //Je sors en disant que le load est sucessful printf("Chargement réussie.") return Listecandidat; -} \ No newline at end of file +} + + + +//void gestionPhaseCandidatures(); A FAIRE. \ No newline at end of file diff --git a/src/partie2/saeP2.h b/src/partie2/saeP2.h index 19276cc..16610cc 100644 --- a/src/partie2/saeP2.h +++ b/src/partie2/saeP2.h @@ -15,4 +15,6 @@ typedef struct voeu ListeVoeu[100]; }candidat; -candidat* LoadCandid(void); \ No newline at end of file +candidat* LoadCandid(void); + +//void gestionPhaseCandidatures(); A FAIRE. \ No newline at end of file