parent
e14864a4fb
commit
2f669c508a
Binary file not shown.
@ -1,11 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
#include "fRox.h"
|
|
||||||
#define TAILLE 500
|
|
||||||
|
|
||||||
void main(void)
|
|
||||||
{ int *tNoClient, *tAge, toto;
|
|
||||||
char *tNomClient, *tPreClient, *tStatut;
|
|
||||||
|
|
||||||
toto =fchargement(tNoClient, tNomClient, tPreClient, tAge, tStatut, 50);
|
|
||||||
printf("%d\n", toto);
|
|
||||||
}
|
|
@ -1,6 +1,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#define TAILLE 500
|
#define TAILLE 500
|
||||||
|
|
||||||
int fchargement(int *tNoClient, char *tNomClient, char *tPreClient, int *tAge, char *tStatut, int tmax);
|
int fchargement(int *tNoClient, char *tNomClient, char *tPreClient, int *tAge, int *tCActiv, int *tActivite, int *tPasseouPas,int *tPtsBought, int *tPtsBonus, char *tCat, int tmax);
|
||||||
void fRecherche(int *tNoClient, int n, int noClient, int *coderet, int *rang);
|
void fRecherche(int *tNoClient, int n, int noClient, int *coderet, int *rang);
|
||||||
void fAffichage1Client(int *tNoClient, char *tNomClient, char *tPreClient, int *tAge, char *tStatut, int n, int noClient );
|
void fAffichage1Client(int *tNoClient, char *tNomClient, char *tPreClient, int *tAge, char *tStatut, int n, int noClient );
|
||||||
|
int afficheTous(int *tNoClient, char *tNomClient, char *tPreClient, int *tAge, char *tStatut, int n, int noClient )
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
//main commun
|
@ -0,0 +1,13 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "fRox.h"
|
||||||
|
|
||||||
|
|
||||||
|
void main(void)
|
||||||
|
{ int *tNoClient, *tAge, toto, *tCActiv, *tActivite, *tPtsBought, *tPtsBonus;
|
||||||
|
char *tNomClient, *tPreClient, *tCat;
|
||||||
|
|
||||||
|
toto =fchargement(tNoClient, tNomClient, tPreClient, tAge, tCActiv, tActivite, tActivite, tPtsBought, tPtsBonus, tCat, 500);
|
||||||
|
printf("%d\n", toto);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue