mysh.h 280 B

123456789101112131415161718
  1. /*
  2. * File: mysh.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 6 novembre 2018
  6. */
  7. #ifndef MYSH_H
  8. #define MYSH_H
  9. /* --- Fonctions utilitaires --- */
  10. void show_current_dir(const char*, const char*);
  11. /* --- Commandes internes --- */
  12. void cd(int, char**);
  13. #endif /* MYSH_H */