/** * @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; } }