| /* fichier rechPoint.c */#include"rechPoint.h" extern FILE* leFichier; int rechercher(point pRech) { static int nbAppel = 0; int fin; int retour = 0; point p; ... } |  /* fichier principal.c */#include"rechPoint.h" FILE* leFichier; static point lePoint; void afficher(int r) { ... } int main(void) { char nomFichier[40]; ... } | 
 
 