structure MaillonDept et structure VilleIut

master
loris 2 years ago
parent c12a0650dc
commit 881216e3ed

@ -0,0 +1,2 @@
#include "sae.h"

14
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;
Loading…
Cancel
Save