/* programme : commun.h auteur : Lola Chalmin, Roxane Rossetto date : 13/12/22 finalité : SAE 1.02 Algorithme */ /* Brief : */ typedef struct liste { char ville[20]; char dptmt[20]; int dec; int valid; struct liste * suivant; }Choix; typedef struct { int nEtu; char nom[20]; char prenom[20]; float moymat; float moyfr; float moyen; float moyspe; int nbchx; Choix * lchx; }Candidat;