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.
27 lines
992 B
27 lines
992 B
/**
|
|
* @file main.h
|
|
* @brief Header possédant les inclusions de module, déclarations de constante & prototypes de fonction.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
#define tmaxArticles 500
|
|
#define tmaxClients 750
|
|
|
|
//! TRAITEMENT DES FICHIERS
|
|
void chargeDonnees(int reference[], float weight[], float volume[], float unitPrice[], int clientID[], float cagnotte[], int suspended[]);
|
|
void chargeArticles(int reference[], float weight[], float volume[], float unitPrice[]);
|
|
void chargeClients(int clientID[], float cagnotte[], int suspended[]);
|
|
|
|
void sauvegardeDonnees(int reference[], float weight[], float volume[], float unitPrice[], int clientID[], float cagnotte[], int suspended[]);
|
|
void sauvegardeArticles(int reference[], float weight[], float volume[], float unitPrice[]);
|
|
void sauvegardeClients(int clientID[], float cagnotte[], int suspended[]);
|
|
|
|
//! GESTION CLIENTS
|
|
void inputClient(void);
|
|
void modifyClient(void);
|
|
|
|
//! GESTION STOCKS
|
|
void inputItem(void); |