From 850779cdf6cd3e45150d52b45190322e2aaa87bc Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Thu, 5 Jan 2023 10:34:07 +0100 Subject: [PATCH] =?UTF-8?q?Suppression=20structures=20d=C3=A9plac=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/I/un.h | 17 ----------------- src/II/deux.h | 21 --------------------- 2 files changed, 38 deletions(-) diff --git a/src/I/un.h b/src/I/un.h index 683f2a1..f60480c 100644 --- a/src/I/un.h +++ b/src/I/un.h @@ -7,23 +7,6 @@ Application de gestion des candidature dans les IUT de France */ -#define LEN_MAX 30 - -typedef struct MaillonDept { - char departement[LEN_MAX]; - int nbP; - char responsable[LEN_MAX]; - struct MaillonDept* suiv; -} MaillonDept; - -typedef MaillonDept* ListeDept; - -typedef struct { - char ville[LEN_MAX]; - ListeDept ldept; -} VilleIUT; - - /** \brief propose à l'utilisateur de se connecter avec son id ou de créer son compte étudiant. Appelle la fonction créerCandidat si l'utilisateur veut s'enregistrer. \param id Passage par adresse de la variable "id" diff --git a/src/II/deux.h b/src/II/deux.h index bb9cdc2..c246551 100644 --- a/src/II/deux.h +++ b/src/II/deux.h @@ -7,27 +7,6 @@ Application de gestion des candidature dans les IUT de France */ -#define LEN_MAX 30 - - -//STRUCTURES -typedef struct { - char ville[LEN_MAX], departement[LEN_MAX]; - int decision, validation; -} Candidature; - -typedef Candidature** ListeCandidatures; - -typedef struct { - int id; - char nom[LEN_MAX], prenom[LEN_MAX]; - float moyenneMath, moyenneFrancais, moyenneAnglais, moyenneSpecialite; - int nbCandidatures; - ListeCandidatures listeCandidatures; -} Candidat; - -typedef Candidat** ListeCandidats; - //FONCTIONS ET DOCUMENTATION /**