1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
3 /* getopt_long and getopt_long_only entry points for GNU getopt.
4 Copyright (C) 1987-2023 Free Software Foundation, Inc.
5 This file is part of the GNU C Library and is also part of gnulib.
6 Patches to this file should be submitted to both projects.
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public
19 License along with the GNU C Library; if not, see
20 <https://www.gnu.org/licenses/>. */
29 #include "getopt_int.h"
32 getopt_long (int argc
, char *__getopt_argv_const
*argv
, const char *options
,
33 const struct option
*long_options
, int *opt_index
)
35 return _getopt_internal (argc
, (char **) argv
, options
, long_options
,
40 _getopt_long_r (int argc
, char **argv
, const char *options
,
41 const struct option
*long_options
, int *opt_index
,
42 struct _getopt_data
*d
)
44 return _getopt_internal_r (argc
, argv
, options
, long_options
, opt_index
,
48 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
49 If an option that starts with '-' (not '--') doesn't match a long option,
50 but does match a short option, it is parsed as a short option
54 getopt_long_only (int argc
, char *__getopt_argv_const
*argv
,
56 const struct option
*long_options
, int *opt_index
)
58 return _getopt_internal (argc
, (char **) argv
, options
, long_options
,
63 _getopt_long_only_r (int argc
, char **argv
, const char *options
,
64 const struct option
*long_options
, int *opt_index
,
65 struct _getopt_data
*d
)
67 return _getopt_internal_r (argc
, argv
, options
, long_options
, opt_index
,
78 main (int argc
, char **argv
)
85 int this_option_optind
= optind
? optind
: 1;
87 static const struct option long_options
[] =
98 c
= getopt_long (argc
, argv
, "abc:d:0123456789",
99 long_options
, &option_index
);
106 printf ("option %s", long_options
[option_index
].name
);
108 printf (" with arg %s", optarg
);
122 if (digit_optind
!= 0 && digit_optind
!= this_option_optind
)
123 printf ("digits occur in two different argv-elements.\n");
124 digit_optind
= this_option_optind
;
125 printf ("option %c\n", c
);
129 printf ("option a\n");
133 printf ("option b\n");
137 printf ("option c with value '%s'\n", optarg
);
141 printf ("option d with value '%s'\n", optarg
);
148 printf ("?? getopt returned character code 0%o ??\n", c
);
154 printf ("non-option ARGV-elements: ");
155 while (optind
< argc
)
156 printf ("%s ", argv
[optind
++]);