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.
33 lines
1.1 KiB
33 lines
1.1 KiB
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* Fonctions Ouverture des fichiers textes */
|
|
int OuvertureMembres(int tNoCarte[], int tage[], int tPointsCarte[], int tCarteActive[], int tmax);
|
|
int OuvertureActivitesJour(int tNbActivitesJour[], int tDate[], int tmax);
|
|
void testOuverture();
|
|
|
|
/* Fonctions des menus */
|
|
void choixMenu();
|
|
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 modifierPoints(int tNumCarte[], int tPoints[], int tailleLog, int numCarte, int points);
|
|
void modifierAge(int tNumCarte[], int tAge[], int tailleLog); |