shell_find_view.c 307 B

123456789101112
  1. /*
  2. * shell_find_view.c
  3. */
  4. #include "private.h"
  5. /*--------------------------------------------------------- */
  6. clish_view_t *clish_shell_find_view(clish_shell_t * this, const char *name)
  7. {
  8. return lub_bintree_find(&this->view_tree, name);
  9. }
  10. /*--------------------------------------------------------- */