| 672 | } |
| 673 | |
| 674 | int fe_getopt_long_only ( |
| 675 | int argc, |
| 676 | char *const *argv, |
| 677 | const char *options, |
| 678 | const struct fe_option *long_options, |
| 679 | int *opt_index) |
| 680 | { |
| 681 | return _fe_getopt_internal (argc, argv, options, long_options, opt_index, 1); |
| 682 | } |
| 683 | |
| 684 | #ifdef TEST_GETOPT |
| 685 |
nothing calls this directly
no test coverage detected