* @brief Pass a vector of strings to boot_parse_arg */
| 212 | * @brief Pass a vector of strings to boot_parse_arg |
| 213 | */ |
| 214 | int |
| 215 | boot_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 | } |
no test coverage detected