You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
609 B
35 lines
609 B
/* \file: sae.h
|
|
\author: Nolan Devouassoux, Renaud Beuret
|
|
\date: 25 oct
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
\brief: gestion adhèrent
|
|
*/
|
|
int creeadherent(int *tNC,char *tN,char *tPR,int *tA,int *tCA,int *tPO, int Tmax);
|
|
|
|
/*
|
|
\brief: affiche les adèrent
|
|
*/
|
|
void affichageA(int *tNC,char *tN,char *tPR,int *tA,int *tCA,int *tPO, int n);
|
|
|
|
/*
|
|
\brief: fonction qui recher le client
|
|
*/
|
|
int recherche(int*tNC,int n, int val, int*trouve);
|
|
|
|
|
|
/*
|
|
\brief: ajoute un adèrent
|
|
*/
|
|
int insertpers(int *tNC,char *tN,char *tPR,int *tA,int *tCA,int *tPO, int Tmax);
|
|
|
|
|
|
|
|
/*
|
|
\brief: globale
|
|
*/
|
|
void globale(); |