shell_misc.c 322 B

1234567891011121314151617
  1. /*
  2. * shell_misc.c
  3. */
  4. #include <stdlib.h>
  5. #include <assert.h>
  6. #include "private.h"
  7. /*--------------------------------------------------------- */
  8. const char *clish_shell__get_overview(const clish_shell_t *this)
  9. {
  10. assert(this);
  11. return this->overview;
  12. }
  13. /*--------------------------------------------------------- */