Merge branch 'master' of https://codefirst.iut.uca.fr/git/alexis.laurent/SAE_CAA
commit
09f636e9f3
@ -0,0 +1,26 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct maillondept {
|
||||||
|
char departement[30];
|
||||||
|
int nbPlaces;
|
||||||
|
char nom[30];
|
||||||
|
struct maillondept* suiv;
|
||||||
|
}MaillonDept;
|
||||||
|
|
||||||
|
|
||||||
|
typedef MaillonDept* ListeDept;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
char ville[30];
|
||||||
|
ListeDept idDept;
|
||||||
|
}VilleIUT;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue