| 59 | } |
| 60 | |
| 61 | int getopt_long(int argc, char* const* argv, const char* optstring, |
| 62 | const struct option* longopts, int* longindex) { |
| 63 | return getopt_long_impl(argc, argv, optstring, longopts, longindex, false); |
| 64 | } |
| 65 | |
| 66 | int getopt_long_only(int argc, char* const* argv, const char* optstring, |
| 67 | const struct option* longopts, int* longindex) { |
no test coverage detected