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.

24 lines
398 B

int menuAdmin(int phase)
{
int choix;
if (phase < 3)
{
afficherMenuAdmin();
scanf("%d", &choix);
}
switch (choix)
{
case : 1
return choix + 1;
break;
case : 2
return choix;
break;
}
}
void afficherMenuAdmin(void)
{
printf("1.Passer a la phase suivante (Attention, irréversible)\n");
printf("2.Quitter")
}