parent
b5ff33c384
commit
74d638b020
@ -1,19 +1,33 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/* Fonctions Ouverture des fichiers textes */
|
||||||
int OuvertureMembres(int tNoCarte[], int tage[], int tPointsCarte[], int tCarteActive[], int tmax);
|
int OuvertureMembres(int tNoCarte[], int tage[], int tPointsCarte[], int tCarteActive[], int tmax);
|
||||||
int OuvertureActivitesJour(int tNbActivitesJour[], int tDate[], int tmax);
|
int OuvertureActivitesJour(int tNbActivitesJour[], int tDate[], int tmax);
|
||||||
void testOuverture(void);
|
void testOuverture();
|
||||||
/*
|
|
||||||
int Sauvegarde();
|
|
||||||
void testSauvegarde(void);
|
|
||||||
|
|
||||||
int pointsBonus();
|
/* Fonctions des menus */
|
||||||
int CreationAdherent();
|
void choixMenu();
|
||||||
int FrequenceCentre();
|
void choixMenuAffichage();
|
||||||
*/
|
|
||||||
|
|
||||||
|
/* Fonctions d'affichage */
|
||||||
|
void Affichage1Adherent();
|
||||||
|
void AffichageTousAdherents();
|
||||||
|
void AffichageNbEntreesJour();
|
||||||
|
void AffichageNbEntreesTousJours();
|
||||||
|
void AffichageNbAdherents();
|
||||||
|
|
||||||
|
/* Fonction global */
|
||||||
|
void gestionMenus(void);
|
||||||
|
|
||||||
|
/* Fonction Sauvegarde */
|
||||||
|
int Sauvegarde(int tNoCarte[], int tage[], int tPointsCarte[], int tCarteActive[], inttNbActivitesJour[], int tDate[], int nbelem);
|
||||||
|
|
||||||
|
/* Fonctions de gestion des adherents */
|
||||||
|
|
||||||
|
|
||||||
|
/* Fonstions de gestion des points */
|
||||||
|
void ajouterPoints(int tNumCarte[], int tPoints[], int tailleLog);
|
||||||
int recherche(int tab[], int tailleLog, int valeur, int *trouve);
|
int recherche(int tab[], int tailleLog, int valeur, int *trouve);
|
||||||
int modifierPoints(int tNumCarte[], int tPoints[], int tailleLog, int numCarte, int points);
|
int modifierPoints(int tNumCarte[], int tPoints[], int tailleLog, int numCarte, int points);
|
||||||
void modifierAge(int tNumCarte[], int tPoints[], int tailleLog, int nbPoints);
|
|
||||||
void modifierAge(int tNumCarte[], int tAge[], int tailleLog);
|
void modifierAge(int tNumCarte[], int tAge[], int tailleLog);
|
Loading…
Reference in new issue