#ifndef AFFICHE_H #define AFFICHE_H /* Descripteur de fichier sur lequel on ecrit les messages : * c'est la sortie d'erreur par defaut. */ extern int affiche_fd ; /* Affiche la chaine `s' sur `affiche_fd'. */ void affiche_chaine(const char *s) ; /* Affiche la chaine `s' sur `affiche_fd', suivie d'une retour a la ligne. */ void affiche_ligne(const char *s) ; /* Affiche l'ecriture decimale de l'entier signe `n' sur `affiche_fd'. */ void affiche_entier(int n) ; /* Affiche l'ecriture hexadecimale de l'entier non signe `n' sur `affiche_fd'. */ void affiche_hexa(unsigned int n) ; #endif /* ifndef AFFICHE_H */