2
0

getopt_s.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * getopt.c
  3. *
  4. * a minimal implementation of the getopt() function, written so that
  5. * test applications that use that function can run on non-POSIX
  6. * platforms
  7. *
  8. */
  9. /*
  10. *
  11. * Copyright (c) 2001-2017 Cisco Systems, Inc.
  12. * All rights reserved.
  13. *
  14. * Redistribution and use in source and binary forms, with or without
  15. * modification, are permitted provided that the following conditions
  16. * are met:
  17. *
  18. * Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. *
  21. * Redistributions in binary form must reproduce the above
  22. * copyright notice, this list of conditions and the following
  23. * disclaimer in the documentation and/or other materials provided
  24. * with the distribution.
  25. *
  26. * Neither the name of the Cisco Systems, Inc. nor the names of its
  27. * contributors may be used to endorse or promote products derived
  28. * from this software without specific prior written permission.
  29. *
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  33. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  34. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  35. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  36. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  37. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  38. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  41. * OF THE POSSIBILITY OF SUCH DAMAGE.
  42. *
  43. */
  44. #include <stdlib.h> /* for NULL */
  45. int optind_s = 0;
  46. char *optarg_s;
  47. #define GETOPT_FOUND_WITHOUT_ARGUMENT 2
  48. #define GETOPT_FOUND_WITH_ARGUMENT 1
  49. #define GETOPT_NOT_FOUND 0
  50. static int getopt_check_character(char c, const char *string)
  51. {
  52. unsigned int max_string_len = 128;
  53. while (*string != 0) {
  54. if (max_string_len == 0) {
  55. return GETOPT_NOT_FOUND;
  56. }
  57. max_string_len--;
  58. if (*string++ == c) {
  59. if (*string == ':') {
  60. return GETOPT_FOUND_WITH_ARGUMENT;
  61. } else {
  62. return GETOPT_FOUND_WITHOUT_ARGUMENT;
  63. }
  64. }
  65. }
  66. return GETOPT_NOT_FOUND;
  67. }
  68. int getopt_s(int argc, char *const argv[], const char *optstring)
  69. {
  70. while (optind_s + 1 < argc) {
  71. char *string;
  72. /* move 'string' on to next argument */
  73. optind_s++;
  74. string = argv[optind_s];
  75. if (string == NULL)
  76. return '?'; /* NULL argument string */
  77. if (string[0] != '-')
  78. return -1; /* found an unexpected character */
  79. switch (getopt_check_character(string[1], optstring)) {
  80. case GETOPT_FOUND_WITH_ARGUMENT:
  81. if (optind_s + 1 < argc) {
  82. optind_s++;
  83. optarg_s = argv[optind_s];
  84. return string[1];
  85. } else {
  86. return '?'; /* argument missing */
  87. }
  88. case GETOPT_FOUND_WITHOUT_ARGUMENT:
  89. return string[1];
  90. case GETOPT_NOT_FOUND:
  91. default:
  92. return '?'; /* didn't find expected character */
  93. break;
  94. }
  95. }
  96. return -1;
  97. }