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
}Devis; {
char rue[30];
typedef struct maillontdevis{ int codePostal;
char ville[30];
}MaillonDevis; } Adresse;
typedef struct ldevis{ typedef struct
{
}ListeDevis; char tache[30];
char entreprise[30];
Adresse adresse;
typedef struct offre{ int capital;
char travaux[20]; int duree;
int cout;
}Offre; } Devis;
typedef struct{ typedef struct maillonDevis
int oeil.gauche; {
int oeil.droit; Devis devis;
int bouche; struct maillonDevis *suiv;
}Pascal; } MaillonDevis, *ListeDevis;
typedef struct
{
char travaux[30];
ListeDevis ldevis;
} Offre;
//~~~~~~~~~~~~~~~~~~~~~~~~~~~FONCTION~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //~~~~~~~~~~~~~~~~~~~~~~~~~~~FONCTION~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Loading…
Cancel
Save