* getopt_long -- * Parse argc/argv argument vector. */
| 480 | * Parse argc/argv argument vector. |
| 481 | */ |
| 482 | int |
| 483 | getopt_long(int nargc, char * const *nargv, const char *options, |
| 484 | const struct option *long_options, int *idx) |
| 485 | { |
| 486 | |
| 487 | return (getopt_internal(nargc, nargv, options, long_options, idx, |
| 488 | FLAG_PERMUTE)); |
| 489 | } |
| 490 | |
| 491 | /* |
| 492 | * getopt_long_only -- |