getopt.h 819 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef _GETOPT_H__
  7. #define _GETOPT_H__
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #include <zephyr.h>
  12. struct getopt_state {
  13. int opterr; /* if error message should be printed */
  14. int optind; /* index into parent argv vector */
  15. int optopt; /* character checked for validity */
  16. int optreset; /* reset getopt */
  17. char *optarg; /* argument associated with option */
  18. char *place; /* option letter processing */
  19. };
  20. /* Function intializes getopt_state structure */
  21. void getopt_init(struct getopt_state *state);
  22. /*
  23. * getopt --
  24. * Parse argc/argv argument vector.
  25. */
  26. int getopt(struct getopt_state *const state, int nargc,
  27. char *const nargv[], const char *ostr);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /* _GETOPT_H__ */