123456789101112131415161718192021222324252627 |
- /*
- * File: mysh.h
- * Author: Arthur Brandao
- *
- * Created on 6 novembre 2018
- */
- #ifndef MYSH_H
- #define MYSH_H
- /* --- Fonctions --- */
- /**
- * Affiche le dossier de travail actuel
- * @param char* Chaine à afficher avant le dossier
- * @param char* Chaine à afficher après le dossier
- */
- void show_current_dir(const char*, const char*);
- /**
- * Execute l'ensemble des commandes d'une ligne
- * @param CommandTab La ligne de commande parser
- * @return
- */
- int run(CommandTab);
- #endif /* MYSH_H */
|