with arguments contained within PARSE. */
void invoke (struct mi_parse *parse) const override
{
- mi_parse_argv (parse->args (), parse);
+ parse->parse_argv ();
if (parse->argv == nullptr)
error (_("Problem parsing arguments: %s %s"), parse->command,
}
void
-mi_parse_argv (const char *args, struct mi_parse *parse)
+mi_parse::parse_argv ()
{
- const char *chp = args;
+ const char *chp = m_args.get ();
int argc = 0;
char **argv = XNEWVEC (char *, argc + 1);
switch (*chp)
{
case '\0':
- parse->argv = argv;
- parse->argc = argc;
+ this->argv = argv;
+ this->argc = argc;
return;
case '"':
{
DISABLE_COPY_AND_ASSIGN (mi_parse);
+ /* Split the arguments into argc/argv and store the result. */
+ void parse_argv ();
+
/* Return the full argument string, as used by commands which are
implemented as CLI commands. */
const char *args () const
enum print_values mi_parse_print_values (const char *name);
-/* Split ARGS into argc/argv and store the result in PARSE. */
-
-extern void mi_parse_argv (const char *args, struct mi_parse *parse);
-
#endif /* MI_MI_PARSE_H */
pymicmd_debug_printf ("this = %p, name = %s", this, name ());
- mi_parse_argv (parse->args (), parse);
+ parse->parse_argv ();
if (parse->argv == nullptr)
error (_("Problem parsing arguments: %s %s"), parse->command,