wow le tp là
This commit is contained in:
16
exo1/personne.h
Normal file
16
exo1/personne.h
Normal file
@@ -0,0 +1,16 @@
|
||||
/* 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 */
|
Reference in New Issue
Block a user