Etudes/BTS/C/Premiere annee/structureClub/biblio.h

17 lines
377 B
C
Raw Normal View History

2016-10-14 15:11:52 +00:00
#ifndef BIBLIO_H_INCLUDED
#define BIBLIO_H_INCLUDED
#define TAILLEMAX 50
typedef struct{
char nom[TAILLEMAX];
char prenom[TAILLEMAX];
char numCarte[TAILLEMAX];
unsigned int numActivite;
}typeAdherent;
typeAdherent *nouvelAdherent();
void afficherUnAdherent(typeAdherent *adherent[], char numCarteAdherent[], int indiceAdherent);
#endif // BIBLIO_H_INCLUDED