You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
430 B

#include <stdio.h>
typedef struct Maillon{
char intitule[30];
int nbP;
char nomRes[30];
struct Maillon *suiv;
}MaillonDept, *ListeDept;
typedef struct{
char ville[30];
ListeDept ldept;
VilleIUT *tiut[];
}VilleIUT;
char* lireVille(FILE*);
char* lireDept(FILE*);
ListeDept initListe(void);
ListeDept insertEnTete(ListeDept, char*, int, char*);
ListeDept insertCroissante(ListeDept, char*, int, char*);