|
|
@ -5,9 +5,9 @@
|
|
|
|
#include "structures.h"
|
|
|
|
#include "structures.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Menus */
|
|
|
|
/* Menus */
|
|
|
|
void choixMenu(void);
|
|
|
|
void choixMenu(ListeDept *tiut[]);
|
|
|
|
void menuUtilisateur(void);
|
|
|
|
void menuUtilisateur(ListeDept *tiut[]);
|
|
|
|
void menuAdministrateur(void);
|
|
|
|
void menuAdministrateur(ListeDept *tiut[]);
|
|
|
|
|
|
|
|
|
|
|
|
/* Partie 1 */
|
|
|
|
/* Partie 1 */
|
|
|
|
ListeDept listenouv(void);
|
|
|
|
ListeDept listenouv(void);
|
|
|
@ -19,6 +19,7 @@ void afficherDept(ListeDept l);
|
|
|
|
int rechercheDept(ListeDept l, char departement[], bool *trouve);
|
|
|
|
int rechercheDept(ListeDept l, char departement[], bool *trouve);
|
|
|
|
ListeDept supprimerEnTete(ListeDept l);
|
|
|
|
ListeDept supprimerEnTete(ListeDept l);
|
|
|
|
ListeDept supprimer(ListeDept l, char departement[]);
|
|
|
|
ListeDept supprimer(ListeDept l, char departement[]);
|
|
|
|
|
|
|
|
int longueur(ListeDept l);
|
|
|
|
|
|
|
|
|
|
|
|
int getNbP(ListeDept l, int pos);
|
|
|
|
int getNbP(ListeDept l, int pos);
|
|
|
|
void setNbP(ListeDept l, int pos, int valeur);
|
|
|
|
void setNbP(ListeDept l, int pos, int valeur);
|
|
|
|