error.c 508 B

123456789101112131415161718192021222324
  1. /*
  2. * File: error.c
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 8 novembre 2018
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include "error.h"
  10. /* --- Extern --- */
  11. int serrno = 0;
  12. char* serrlib[] = {
  13. "Reussite",
  14. "Ligne de commande mal terminée",
  15. "& inattendue",
  16. "Impossible d'ouvrir/créer le fichier pour la redirection",
  17. "Type de redirection incorrect",
  18. "Redirection Incorrect",
  19. "Command incorrect",
  20. "Analyse wildcard impossible",
  21. "Echec ajout wildcard dans argv"
  22. };