Signed-off-by: Mathéo Hersan <matheohersan@MacBook-Pro-de-Matheo.local>pull/2/head^2
parent
4e17746abb
commit
91542d8c75
@ -1,5 +1,5 @@
|
||||
|
||||
#include<stdio.h>
|
||||
|
||||
int chargementArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tPhysique);
|
||||
void sauvegadArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
|
||||
void sauvegardArticles(int tRef[], float tPoids[], float tVol[], float tPrix[], int tLogique);
|
||||
int ajouterArticle( int tRef[], float tPoids[], float tVol[], float tPrix[], int *tLogique, int tPhysique, int ref, float poids, float volume, float prix);
|
@ -1,12 +1,3 @@
|
||||
#include <stdio.h>
|
||||
#include "responsable.h"
|
||||
#include "../interface/interface_resp.h"
|
||||
|
||||
int main (void)
|
||||
{
|
||||
int tPhysique = 10, tRef[10], tLogique = 0;
|
||||
float tPoids[10], tVol[10], tPrix[10];
|
||||
tLogique = chargementArticles( tRef, tPoids, tVol, tPrix, tPhysique);
|
||||
affichArticles( tRef, tPoids, tVol, tPrix, tLogique);
|
||||
return 0;
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
#include<stdio.h>
|
||||
|
||||
void affiche_client(int a);
|
||||
void menu(int *choix, int a);
|
||||
void menu_client(int *choix, int a);
|
||||
void global_client();
|
Loading…
Reference in new issue