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.
26 lines
609 B
26 lines
609 B
/**
|
|
* @file debug.c
|
|
* @brief Gestion du mode debug
|
|
*/
|
|
|
|
#include "main.h"
|
|
|
|
void debugMenu(int tabReference[], float tabWeight[], float tabVolume[], float unitPrice[], int clientID[], float cagnotte[], int suspended[], int isAdmin[], int tlogArticle, int tlogClient)
|
|
{
|
|
int choice;
|
|
printf("DEBUG - Menu de debug: \n");
|
|
printf("1 - Afficher les articles\n");
|
|
printf("2 - Afficher les clients\n");
|
|
printf("Votre choix: ");
|
|
scanf("%d%*c", &choice);
|
|
|
|
switch (choice)
|
|
{
|
|
case 1:
|
|
break;
|
|
case 2:
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
} |