| 1234567891011121314151617 |
- /*
- * File: error.c
- * Author: Arthur Brandao
- *
- * Created on 8 novembre 2018
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include "error.h"
- /* --- Extern --- */
- int serrorno = 0;
- char* serrorlib[] = {
- "Reussite",
- "Error loul"
- };
|