1234567891011121314151617181920212223 |
- #include "private.h"
- #include "lub/string.h"
- #include <string.h>
- clish_pargv_status_t clish_shell_parse(
- const clish_shell_t * this, const char *line,
- const clish_command_t ** cmd, clish_pargv_t ** pargv)
- {
- clish_pargv_status_t result = CLISH_BAD_CMD;
- *cmd = clish_shell_resolve_command(this, line);
-
- if (NULL != *cmd)
- *pargv = clish_pargv_new(*cmd, line, 0, &result);
- return result;
- }
|