From ac5044a90256f947ab264b2a76e6e23dbe27992c Mon Sep 17 00:00:00 2001 From: DahmaneYanis Date: Sun, 6 Nov 2022 17:18:29 +0100 Subject: [PATCH] =?UTF-8?q?AfficheInfosAdherents=20comment=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/adherent.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/source/adherent.c b/source/adherent.c index 0fc639b..0e2682a 100644 --- a/source/adherent.c +++ b/source/adherent.c @@ -226,7 +226,16 @@ void ligne(void) printf("|\n"); } - +/** + * @brief Affiche les informations d'un adhérent + * + * @param noCarte Numéro d'adhérent pour lequel on cherche des informations + * @param tabNoCarte [TABLEAU] Liste des adherents + * @param tabEtatCarte [TABLEAU] Liste des états des cartes des adherents + * @param tabPointCarte [TABLEAU] Liste des crédits pour chaque adhérent + * @param nbAdherents [Taille Logique] Nombre d'adherents total + * @return int [CODE ERR] 0 -> Tout s'est bien passé | 1 -> Numéro de carte introuvable + */ int AfficheInfosAdherent(int noCarte, int tabNoCarte[], int tabEtatCarte[], int tabPointCarte[], int nbAdherents) { int indice = 0, trouve = 0;