MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / getopt_long

Function getopt_long

lib/getopt_long.c:53–62  ·  view source on GitHub ↗
(argc, argv, options, long_options, opt_index)

Source from the content-addressed store, hash-verified

51#endif
52
53int
54getopt_long(argc, argv, options, long_options, opt_index)
55int argc;
56char *const *argv;
57const char *options;
58const struct option *long_options;
59int *opt_index;
60{
61 return _getopt_internal(argc, argv, options, long_options, opt_index, 0);
62}
63
64/* Like getopt_long, but '-' as well as '--' can indicate a long option.
65 If an option that starts with '-' (not '--') doesn't match a long option,

Callers 13

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 1

_getopt_internalFunction · 0.85

Tested by

no test coverage detected