diff options
author | Hui Zhu <teawater@gmail.com> | 2012-07-05 01:00:43 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2012-07-05 01:00:43 +0000 |
commit | e6f0bce70d56cee13a0bf5ca4f72687b3203e6c9 (patch) | |
tree | dccf8f6903d9ed86ce0dd6e0edb41fcb08d9de3d /gdb/breakpoint.c | |
parent | 38401e4002fa0741e2933f84e260f2a35cac533e (diff) | |
download | gdb-e6f0bce70d56cee13a0bf5ca4f72687b3203e6c9.zip gdb-e6f0bce70d56cee13a0bf5ca4f72687b3203e6c9.tar.gz gdb-e6f0bce70d56cee13a0bf5ca4f72687b3203e6c9.tar.bz2 |
2012-07-05 Hui Zhu <hui_zhu@mentor.com>
* breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
* cli/cli-utils.c (check_for_argument): New function.
* cli/cli-utils.h (check_for_argument): Ditto.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 555694e..6b9faf3 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11085,23 +11085,6 @@ watch_command_wrapper (char *arg, int from_tty, int internal) watch_command_1 (arg, hw_write, from_tty, 0, internal); } -/* A helper function that looks for an argument at the start of a - string. The argument must also either be at the end of the string, - or be followed by whitespace. Returns 1 if it finds the argument, - 0 otherwise. If the argument is found, it updates *STR. */ - -static int -check_for_argument (char **str, char *arg, int arg_len) -{ - if (strncmp (*str, arg, arg_len) == 0 - && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len]))) - { - *str += arg_len; - return 1; - } - return 0; -} - /* A helper function that looks for the "-location" argument and then calls watch_command_1. */ |