execute.h 334 B

1234567891011121314151617181920
  1. /*
  2. * File: execute.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 9 novembre 2018
  6. */
  7. #ifndef EXECUTE_H
  8. #define EXECUTE_H
  9. /* --- Include --- */
  10. #include "constante.h"
  11. /* --- Fonctions publiques --- */
  12. boolean is_executable_file(const char *);
  13. int exec_shell(char*, char**);
  14. int exec_file(char*, char**);
  15. #endif /* EXECUTE_H */