Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/adresse1.h~
(Deskargatu)#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef adressedef
#define adressedef 1
typedef struct
{
int iNum;
char* sRue;
int iCodePostal;
char* sVille;
} Adresse;
Adresse* CreerAdresse(int a,char* b,int c, char* d);
void AfficheAdresse(Adresse* a);
void SupprimeAdresse(Adresse* a);
#endif