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

Function boot_parse_args

freebsd/kern/subr_boot.c:214–223  ·  view source on GitHub ↗

* @brief Pass a vector of strings to boot_parse_arg */

Source from the content-addressed store, hash-verified

212 * @brief Pass a vector of strings to boot_parse_arg
213 */
214int
215boot_parse_args(int argc, char *argv[])
216{
217 int i, howto;
218
219 howto = 0;
220 for (i = 1; i < argc; i++)
221 howto |= boot_parse_arg(argv[i]);
222 return (howto);
223}

Callers 1

platform_startFunction · 0.85

Calls 1

boot_parse_argFunction · 0.85

Tested by

no test coverage detected