Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/adresse.h
(Deskargatu)#ifndef adresseh
#define adresseh 1
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
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