MCPcopy Create free account
hub / github.com/F-Stack/f-stack / getopt_long_only

Function getopt_long_only

dpdk/lib/eal/windows/getopt.c:460–467  ·  view source on GitHub ↗

* getopt_long_only -- * Parse argc/argv argument vector. */

Source from the content-addressed store, hash-verified

458 * Parse argc/argv argument vector.
459 */
460int
461getopt_long_only(int nargc, char *nargv[], const char *options,
462 const struct option *long_options, int *idx)
463{
464
465 return (getopt_internal(nargc, nargv, options, long_options, idx,
466 FLAG_PERMUTE|FLAG_LONGONLY));
467}
468
469#endif /* NEED_USUAL_GETOPT */

Callers

nothing calls this directly

Calls 1

getopt_internalFunction · 0.85

Tested by

no test coverage detected