Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
openocd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
openocd
Commits
269c6d83
Commit
269c6d83
authored
16 years ago
by
oharboe
Browse files
Options
Downloads
Patches
Plain Diff
utility fn.
git-svn-id:
svn://svn.berlios.de/openocd/trunk@742
b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent
e8b16d40
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/helper/command.c
+15
-0
15 additions, 0 deletions
src/helper/command.c
src/helper/command.h
+1
-0
1 addition, 0 deletions
src/helper/command.h
with
16 additions
and
0 deletions
src/helper/command.c
+
15
−
0
View file @
269c6d83
...
@@ -537,6 +537,21 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
...
@@ -537,6 +537,21 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
return
retval
;
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
)
void
command_print_help_line
(
command_context_t
*
context
,
struct
command_s
*
command
,
int
indent
)
{
{
command_t
*
c
;
command_t
*
c
;
...
...
This diff is collapsed.
Click to expand it.
src/helper/command.h
+
1
−
0
View file @
269c6d83
...
@@ -74,6 +74,7 @@ extern int command_done(command_context_t *context);
...
@@ -74,6 +74,7 @@ extern int command_done(command_context_t *context);
extern
void
command_print
(
command_context_t
*
context
,
char
*
format
,
...);
extern
void
command_print
(
command_context_t
*
context
,
char
*
format
,
...);
extern
void
command_print_sameline
(
command_context_t
*
context
,
char
*
format
,
...);
extern
void
command_print_sameline
(
command_context_t
*
context
,
char
*
format
,
...);
extern
int
command_run_line
(
command_context_t
*
context
,
char
*
line
);
extern
int
command_run_line
(
command_context_t
*
context
,
char
*
line
);
extern
int
command_run_linef
(
command_context_t
*
context
,
char
*
format
,
...);
extern
int
command_run_line_internal
(
command_context_t
*
context
,
char
*
line
);
extern
int
command_run_line_internal
(
command_context_t
*
context
,
char
*
line
);
extern
int
command_run_file
(
command_context_t
*
context
,
FILE
*
file
,
enum
command_mode
mode
);
extern
int
command_run_file
(
command_context_t
*
context
,
FILE
*
file
,
enum
command_mode
mode
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment