00001 #ifndef AFFICHE_H 00002 #define AFFICHE_H 00003 00004 /* Descripteur de fichier sur lequel on écrit les messages : 00005 * c'est la sortie d'erreur par défaut. */ 00006 extern int affiche_fd ; 00007 00008 /* Affiche la chaîne `s' sur `affiche_fd'. */ 00009 void affiche_chaine(const char *s) ; 00010 00011 /* Affiche la chaîne `s' sur `affiche_fd', suivie d'une retour à la ligne. */ 00012 void affiche_ligne(const char *s) ; 00013 00014 /* Affiche l'écriture décimale de l'entier signé `n' sur `affiche_fd'. */ 00015 void affiche_entier(int n) ; 00016 00017 /* Affiche l'écriture hexadécimale de l'entier non signé `n' sur `affiche_fd'. */ 00018 void affiche_hexa(unsigned int n) ; 00019 00020 #endif /* ifndef AFFICHE_H */