commentaires sur la fonction créer candidat

master
Guillaume 2 years ago
parent d233c5c0df
commit 73f9f3b4b4

@ -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 creerCandidat(Candidat *tCand[], int nbCandidats)
{ {
int i=0; int i=0;
@ -776,6 +783,8 @@ int creerCandidat(Candidat *tCand[], int nbCandidats)
} }
/* /*
================================================ ================================================
Partie 3 Partie 3

Loading…
Cancel
Save