|
|
@ -8,18 +8,24 @@ typedef struct maillonDept
|
|
|
|
char dept[31];
|
|
|
|
char dept[31];
|
|
|
|
int nbP;
|
|
|
|
int nbP;
|
|
|
|
char respAd[31];
|
|
|
|
char respAd[31];
|
|
|
|
struct mailllonDept *suiv;
|
|
|
|
struct maillonDept *suiv;
|
|
|
|
|
|
|
|
|
|
|
|
}MaillonDept,*ListeDept;
|
|
|
|
} MaillonDept,*ListeDept;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
{
|
|
|
|
char nom[31];
|
|
|
|
char nom[31];
|
|
|
|
ListeDept *lDept;
|
|
|
|
ListeDept lDept;
|
|
|
|
|
|
|
|
|
|
|
|
}VilleIUT;
|
|
|
|
}VilleIUT;
|
|
|
|
|
|
|
|
|
|
|
|
int chargement(VilleIUT *tiut[],int *tMax);
|
|
|
|
int chargement(VilleIUT *tiut[],int *tMax);
|
|
|
|
MaillonDept lireDep(FILE *flot);
|
|
|
|
MaillonDept lireDep(FILE *flot);
|
|
|
|
void afficherDep(MaillonDept m);
|
|
|
|
void afficherDep(MaillonDept m);
|
|
|
|
|
|
|
|
void afficherVille(VilleIUT v);
|
|
|
|
|
|
|
|
void afficherTIUT(VilleIUT *tiut[], int tLog);
|
|
|
|
|
|
|
|
int rechercheIUT(VilleIUT *tiut[], int tLog, char ville[], int *trouve);
|
|
|
|
|
|
|
|
int insererDept(VilleIUT v, MaillonDept *m);
|
|
|
|
|
|
|
|
MaillonDept* rechercheDept(ListeDept lDept, int *trouve, char nom[]);
|
|
|
|
|
|
|
|
VilleIUT** reallocation(VilleIUT *tiut[], int *tMax);
|
|
|
|
void globale(void);
|
|
|
|
void globale(void);
|