00001 00010 #ifndef ERREUR_H 00011 #define ERREUR_H 00012 00014 enum error_type { E_NONE, E_NOT_FOUND, E_EXISTS, E_SYNTAXE, E_UNSUP, E_INIT, E_LONG}; 00021 00023 extern enum error_type num_erreur; 00024 00028 void print_erreur(const char* m); 00029 00030 #endif