123456789101112131415161718192021222324 |
- /*
- * File: error.c
- * Author: Arthur Brandao
- *
- * Created on 8 novembre 2018
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include "error.h"
- /* --- Extern --- */
- int serrno = 0;
- char* serrlib[] = {
- "Reussite",
- "Ligne de commande mal terminée",
- "& inattendue",
- "Impossible d'ouvrir/créer le fichier pour la redirection",
- "Type de redirection incorrect",
- "Redirection Incorrect",
- "Command incorrect",
- "Analyse wildcard impossible",
- "Echec ajout wildcard dans argv"
- };
|