shell__get_viewid.c 306 B

12345678910111213141516
  1. /*
  2. * shell__get_viewid.c
  3. */
  4. #include <assert.h>
  5. #include "private.h"
  6. /*--------------------------------------------------------- */
  7. const char *clish_shell__get_viewid(const clish_shell_t * this)
  8. {
  9. assert(this);
  10. return this->viewid;
  11. }
  12. /*--------------------------------------------------------- */