diff --git a/source/sae.c b/source/sae.c index 00e22b6..0beb9a8 100644 --- a/source/sae.c +++ b/source/sae.c @@ -738,7 +738,14 @@ void afficherCandidats(Candidat **candidats, int nbCandidats) } } - +/** + * @brief Permet de créer un candidat + * + * @param tCand Tableau de pointeur sur une structure de candidat + * @param nbCandidats nombre de candidats créés + * + * @return Retourne le nombre de candidats + */ int creerCandidat(Candidat *tCand[], int nbCandidats) { int i=0; @@ -776,6 +783,8 @@ int creerCandidat(Candidat *tCand[], int nbCandidats) } + + /* ================================================ Partie 3