utility fn.

git-svn-id: svn://svn.berlios.de/openocd/trunk@742 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe
2008-07-04 07:21:31 +00:00
parent e8b16d40f1
commit 269c6d8385
2 changed files with 16 additions and 0 deletions

View File

@@ -537,6 +537,21 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
return retval;
}
int command_run_linef(command_context_t *context, char *format, ...)
{
int retval=ERROR_FAIL;
char *string;
va_list ap;
va_start(ap, format);
string = alloc_vprintf(format, ap);
if (string!=NULL)
{
retval=command_run_line(context, string);
}
va_end(ap);
return retval;
}
void command_print_help_line(command_context_t* context, struct command_s *command, int indent)
{
command_t *c;