création des structure

master
Alexis LAURENT 2 years ago
parent 790c04ed2c
commit b349bdd04c

@ -1 +1,4 @@
#include "SAE.h"

21
SAE.h

@ -1 +1,20 @@
#include "SAE.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <bool.h>
typedef struct
{
char ville[30];
MaillonDept *idDept;
}VilleIUT;
typedef struct maillon
{
char departement[30];
int nbPers;
char responsable[30];
maillon *suiv;
}MaillonDept;

Loading…
Cancel
Save