* getopt_long_only -- * Parse argc/argv argument vector. */
| 493 | * Parse argc/argv argument vector. |
| 494 | */ |
| 495 | int |
| 496 | getopt_long_only(int nargc, char * const *nargv, const char *options, |
| 497 | const struct option *long_options, int *idx) |
| 498 | { |
| 499 | |
| 500 | return (getopt_internal(nargc, nargv, options, long_options, idx, |
| 501 | FLAG_PERMUTE|FLAG_LONGONLY)); |
| 502 | } |
nothing calls this directly
no test coverage detected