@ -0,0 +1,2 @@
#include "sae.h"
@ -3,3 +3,17 @@
#include <string.h>
#include <stdbool.h>
typedef struct maillonDept
{
char nomDept[30];
char resp[30];
int nbP;
struct maillonDept *suiv;
}MaillonDept, *Ldept;
// Utilise pour le tableau de pointeurs sur cette structure (pour Guillaume)
typedef struct
char nom[30];
Ldept l;
}VilleIut;