delete useless things

Signed-off-by: Mathéo Hersan <matheohersan@MacBook-Pro-de-Matheo.local>
pull/1/head
Mathéo Hersan 2 years ago
parent 0a4981396f
commit 9ff160e40d
No known key found for this signature in database
GPG Key ID: 4EF19C64D78EC91B

BIN
app

Binary file not shown.

@ -5,7 +5,6 @@
#include "client.h" #include "client.h"
void afficherDonneesClient() { void afficherDonneesClient() {
// Ouverture du fichier en mode lecture
FILE *fichier = fopen("donnee/client.txt", "r"); FILE *fichier = fopen("donnee/client.txt", "r");
int numeroClient; int numeroClient;
float cagnotte; float cagnotte;
@ -21,6 +20,5 @@ void afficherDonneesClient() {
numeroClient, cagnotte, (suspendu == 0) ? "Non" : "Oui"); numeroClient, cagnotte, (suspendu == 0) ? "Non" : "Oui");
} }
// Fermeture du fichier
fclose(fichier); fclose(fichier);
} }
Loading…
Cancel
Save