parent
974e357544
commit
a753431119
@ -1,12 +0,0 @@
|
||||
#include "specification1.h"
|
||||
|
||||
//~~~~~~~~~~~~PARTIE 1~~~~~~~~~~~~
|
||||
void AfficheDevis(ListeDevis l, char t)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void AfficheDevisE(ListeDevis l, char entr, char t)
|
||||
{
|
||||
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
#include "specification1.h"
|
||||
|
||||
//~~~~~~~~~~~~PARTIE 1~~~~~~~~~~~~
|
||||
|
||||
void affiche(void)
|
||||
{
|
||||
int choix;
|
||||
printf("####################################################\n");
|
||||
printf("1- Afficher les devis pour un type de travaux.\n");
|
||||
printf("2- Afficher les devis par type pour une entreprise.\n");
|
||||
printf("####################################################\n");
|
||||
scanf("%d",&choix);
|
||||
|
||||
switch(choix)
|
||||
{
|
||||
case 1:
|
||||
printf("");
|
||||
break;
|
||||
case 2:
|
||||
printf("");
|
||||
break;
|
||||
default:
|
||||
printf("Choisissez entre 1 & 2.\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Afficher l'ensemble des devis pour un type de travaux
|
||||
* \param[out] *l pointeur sur le maillonDevis
|
||||
* \param[in] t tâche donné par l'utilisateur
|
||||
*/
|
||||
//TODO Retirer le paramètre "t"
|
||||
void AfficheDevis(ListeDevis l, char t)
|
||||
{
|
||||
if(l==NULL)
|
||||
return;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Afficher le devis d'une entreprise donnée pour un type de travaux donnée
|
||||
* \param[out] *l pointeur sur le maillonDevis
|
||||
* \param[in] t tâche donné par l'utilisateur
|
||||
* \param[in] entr nom de l'entreprise
|
||||
*/
|
||||
//TODO Retirer le paramètre "t"
|
||||
void AfficheDevisE(ListeDevis l, char entr, char t)
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in new issue