shell_getnext_command.c 354 B

12345678910111213
  1. /*
  2. * shell_getnext_command.c
  3. */
  4. #include "private.h"
  5. /*--------------------------------------------------------- */
  6. const clish_command_t *clish_shell_getnext_command(clish_shell_t * this,
  7. const char *line)
  8. {
  9. return clish_shell_find_next_completion(this, line, &this->iter);
  10. }
  11. /*--------------------------------------------------------- */