shell_insert_ptype.c 311 B

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