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.

36 lines
511 B

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
typedef struct maillon
{
char departement[30];
int nbPers;
char responsable[30];
struct maillon *suiv;
}MaillonDept;
typedef MaillonDept* Liste;
typedef struct
{
char ville[30];
MaillonDept *idDept;
}VilleIUT;
bool motdepasseVerif(void);
bool verifQuit(void);
int menuUtilisateurAffiche(void);
int menuAdminAffiche(void);
void gestionMenu(void);
int gestionMenuAdmin(void);
void clearpage(void);