* @brief Simplified interface for common 'space or tab separated' args */
| 202 | * @brief Simplified interface for common 'space or tab separated' args |
| 203 | */ |
| 204 | int |
| 205 | boot_parse_cmdline(char *cmdline) |
| 206 | { |
| 207 | |
| 208 | return (boot_parse_cmdline_delim(cmdline, " \t\n")); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * @brief Pass a vector of strings to boot_parse_arg |
no test coverage detected