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;