shell_getopt.h 419 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_GETOPT_H__
  7. #define SHELL_GETOPT_H__
  8. #include <getopt.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* Initializing shell getopt module.
  13. *
  14. * @param[in] shell Pointer to the shell instance.
  15. */
  16. void z_shell_getopt_init(struct getopt_state *state);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* SHELL_GETOPT_H__ */