apl/APL1.1/14.Organisation_du_code/exo1/personne.h
unknown d9949b5cb0 a
2022-01-14 06:54:18 +01:00

17 lines
334 B
C

/* TP 19 Exercice 1 : fichier personne.h */
#ifndef PERSONNE_H
#define PERSONNE_H
typedef struct s_personne {
char nom[30];
char tel[20];
} * personne;
personne construire_personne(const char*, const char*);
personne saisir_personne();
void afficher_personne(personne);
void detruire_personne(personne);
#endif /* PERSONNE_H */