17 lines
377 B
C
17 lines
377 B
C
#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
|