error.h 303 B

12345678910111213141516171819
  1. /*
  2. * File: error.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 8 novembre 2018
  6. */
  7. #ifndef ERROR_H
  8. #define ERROR_H
  9. /* --- Macro --- */
  10. #define serror(str) fprintf(stderr, str" : %s\n", serrorlib[serrorno])
  11. /* --- Extern --- */
  12. extern int serrorno;
  13. extern char* serrorlib[];
  14. #endif /* ERROR_H */