shell_getopt.c 694 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <shell/shell.h>
  8. #include <shell/shell_getopt.h>
  9. void z_shell_getopt_init(struct getopt_state *state)
  10. {
  11. getopt_init(state);
  12. }
  13. int shell_getopt(const struct shell *shell, int argc, char *const argv[],
  14. const char *ostr)
  15. {
  16. if (!IS_ENABLED(CONFIG_SHELL_GETOPT)) {
  17. return 0;
  18. }
  19. __ASSERT_NO_MSG(shell);
  20. return getopt(&shell->ctx->getopt_state, argc, argv, ostr);
  21. }
  22. struct getopt_state *shell_getopt_state_get(const struct shell *shell)
  23. {
  24. if (!IS_ENABLED(CONFIG_SHELL_GETOPT)) {
  25. return NULL;
  26. }
  27. __ASSERT_NO_MSG(shell);
  28. return &shell->ctx->getopt_state;
  29. }