* getopt_long_only -- * Parse argc/argv argument vector. */
| 562 | * Parse argc/argv argument vector. |
| 563 | */ |
| 564 | int getopt_long_only(int nargc, char* const* nargv, char const* options, const struct option* long_options, int* idx) |
| 565 | { |
| 566 | |
| 567 | return (getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE | FLAG_LONGONLY)); |
| 568 | } |
nothing calls this directly
no test coverage detected