From 1daa1a48587f5ca3a38a37a4ca18f117a603b89f Mon Sep 17 00:00:00 2001 From: d_yanis Date: Mon, 7 Nov 2022 11:11:59 +0100 Subject: [PATCH] =?UTF-8?q?Gestion=20des=20adh=C3=A9rents=20comment=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/menus.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/menus.c b/source/menus.c index 7655488..0043677 100644 --- a/source/menus.c +++ b/source/menus.c @@ -2,6 +2,11 @@ #include "../header/adherent.h" +/** + * @brief Permet l'affichage de GestionAdherent + * + * @return int Choix de l'utilisateur + */ int AffichageGestionAdherent(void) { int choix; @@ -22,6 +27,15 @@ int AffichageGestionAdherent(void) return choix; } +/** + * @brief Menu des gestions des adhérents + * + * @param tabNoCarte [TABLEAU] Liste des adherents + * @param tabEtatCarte [TABLEAU] Etats des cartes + * @param tabPointCarte [TABLEAU] Crédit des cartes + * @param nbAdherents [POINTEUR - Taille Logique] Nombre d'adhérents + * @param taillePhysique [Taille Physique] + */ void GestionAdherent(int tabNoCarte[], int tabEtatCarte[], int tabPointCarte[], int *nbAdherents, int taillePhysique) { int actif = 1;