summaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-04 07:21:31 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-04 07:21:31 +0000
commit269c6d8385c1183819dfef18c811aad76699e6fc (patch)
tree27f08ed07a3a77a32dd68d8ddc226818efdc1272 /src/helper/command.c
parente8b16d40f1ace10c1b2c1c372bba7f04b26f5c24 (diff)
downloadopenocd_libswd-269c6d8385c1183819dfef18c811aad76699e6fc.tar.gz
openocd_libswd-269c6d8385c1183819dfef18c811aad76699e6fc.tar.bz2
openocd_libswd-269c6d8385c1183819dfef18c811aad76699e6fc.tar.xz
openocd_libswd-269c6d8385c1183819dfef18c811aad76699e6fc.zip
utility fn.
git-svn-id: svn://svn.berlios.de/openocd/trunk@742 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 54315dd9..8a736686 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -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;