Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/personne.h~
(Deskargatu)#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "adresse.h"
typedef struct
{
char* sNom;
char* sPrenom;
Adresse* adresse;
} Personne;
Personne* CreerPersonne(char* a, char* b,Adresse* c);
void AffichePersonne(Personne* a);
void SupprimePersonne(Personne** p);