* getopt_long -- * Parse argc/argv argument vector. */
| 445 | * Parse argc/argv argument vector. |
| 446 | */ |
| 447 | int |
| 448 | getopt_long(int nargc, char *nargv[], const char *options, |
| 449 | const struct option *long_options, int *idx) |
| 450 | { |
| 451 | |
| 452 | return (getopt_internal(nargc, nargv, options, long_options, idx, |
| 453 | FLAG_PERMUTE)); |
| 454 | } |
| 455 | |
| 456 | /* |
| 457 | * getopt_long_only -- |