1234567891011121314151617181920 |
- /*
- * File: execute.h
- * Author: Arthur Brandao
- *
- * Created on 9 novembre 2018
- */
- #ifndef EXECUTE_H
- #define EXECUTE_H
- /* --- Include --- */
- #include "constante.h"
- /* --- Fonctions publiques --- */
- boolean is_executable_file(const char *);
- int exec_shell(char*, char**);
- int exec_file(char*, char**);
- #endif /* EXECUTE_H */
|