| 64 | } |
| 65 | |
| 66 | int getopt_long_only(int argc, char* const* argv, const char* optstring, |
| 67 | const struct option* longopts, int* longindex) { |
| 68 | return getopt_long_impl(argc, argv, optstring, longopts, longindex, true); |
| 69 | } |
| 70 | |
| 71 | // XXX: leading colon is not supported |
| 72 | // XXX: updating optind by client is not supported |
no test coverage detected