MCPcopy Create free account
hub / github.com/coreboot/coreboot / getopt_long_only

Function getopt_long_only

payloads/libpayload/libc/getopt_long.c:495–502  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

493 * Parse argc/argv argument vector.
494 */
495int
496getopt_long_only(int nargc, char * const *nargv, const char *options,
497 const struct option *long_options, int *idx)
498{
499
500 return (getopt_internal(nargc, nargv, options, long_options, idx,
501 FLAG_PERMUTE|FLAG_LONGONLY));
502}

Callers

nothing calls this directly

Calls 1

getopt_internalFunction · 0.85

Tested by

no test coverage detected