12345678910111213141516171819202122232425 |
- #include <config.h>
- #include "sys-defines.h"
- #include "getopt.h"
- int
- getopt_long (int argc, char *const *argv, const char *options,
- const struct option *long_options, int *opt_index)
- {
- return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
- }
- int
- getopt_long_only (int argc, char *const *argv, const char *options,
- const struct option *long_options, int *opt_index)
- {
- return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
- }
|