Modification des structures

pull/1/head
Rémi LAVERGNE 1 year ago
parent fb3156dc62
commit 97eae6c293
No known key found for this signature in database
GPG Key ID: 7BCBAE9031E39160

@ -4,29 +4,34 @@
//~~~~~~~~~~~~~~~~~~~~~~~~~~~STRUCTURE~~~~~~~~~~~~~~~~~~~~~~~~~~~ //~~~~~~~~~~~~~~~~~~~~~~~~~~~STRUCTURE~~~~~~~~~~~~~~~~~~~~~~~~~~~
typedef struct devis{ //? Est-ce utile de faire une structure pour l'adresse ?
typedef struct
{
char rue[30];
int codePostal;
char ville[30];
} Adresse;
typedef struct
{
char tache[30];
char entreprise[30];
Adresse adresse;
int capital;
int duree;
int cout;
} Devis; } Devis;
typedef struct maillontdevis{ typedef struct maillonDevis
{
}MaillonDevis; Devis devis;
struct maillonDevis *suiv;
typedef struct ldevis{ } MaillonDevis, *ListeDevis;
}ListeDevis;
typedef struct offre{
char travaux[20];
typedef struct
{
char travaux[30];
ListeDevis ldevis;
} Offre; } Offre;
typedef struct{
int oeil.gauche;
int oeil.droit;
int bouche;
}Pascal;
//~~~~~~~~~~~~~~~~~~~~~~~~~~~FONCTION~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //~~~~~~~~~~~~~~~~~~~~~~~~~~~FONCTION~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Loading…
Cancel
Save