(argc, argv, options, long_options, opt_index)
| 51 | #endif |
| 52 | |
| 53 | int |
| 54 | getopt_long(argc, argv, options, long_options, opt_index) |
| 55 | int argc; |
| 56 | char *const *argv; |
| 57 | const char *options; |
| 58 | const struct option *long_options; |
| 59 | int *opt_index; |
| 60 | { |
| 61 | return _getopt_internal(argc, argv, options, long_options, opt_index, 0); |
| 62 | } |
| 63 | |
| 64 | /* Like getopt_long, but '-' as well as '--' can indicate a long option. |
| 65 | If an option that starts with '-' (not '--') doesn't match a long option, |
no test coverage detected