shell_insert_view.c 306 B

123456789101112
  1. /*
  2. * shell_insert_view.c
  3. */
  4. #include "private.h"
  5. /*--------------------------------------------------------- */
  6. void clish_shell_insert_view(clish_shell_t * this, clish_view_t * view)
  7. {
  8. (void)lub_bintree_insert(&this->view_tree, view);
  9. }
  10. /*--------------------------------------------------------- */