| 12345678910111213141516171819 |
- /*
- * File: error.h
- * Author: Arthur Brandao
- *
- * Created on 8 novembre 2018
- */
- #ifndef ERROR_H
- #define ERROR_H
- /* --- Macro --- */
- #define serror(str) fprintf(stderr, str" : %s\n", serrorlib[serrorno])
- /* --- Extern --- */
- extern int serrorno;
- extern char* serrorlib[];
- #endif /* ERROR_H */
|