diff options
Diffstat (limited to 'gdb/common/common-utils.c')
-rw-r--r-- | gdb/common/common-utils.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gdb/common/common-utils.c b/gdb/common/common-utils.c index e75a1b9..6b10d11 100644 --- a/gdb/common/common-utils.c +++ b/gdb/common/common-utils.c @@ -298,7 +298,7 @@ skip_spaces (char *chp) /* A const-correct version of the above. */ const char * -skip_spaces_const (const char *chp) +skip_spaces (const char *chp) { if (chp == NULL) return NULL; @@ -310,7 +310,7 @@ skip_spaces_const (const char *chp) /* See documentation in common-utils.h. */ const char * -skip_to_space_const (const char *chp) +skip_to_space (const char *chp) { if (chp == NULL) return NULL; @@ -319,6 +319,14 @@ skip_to_space_const (const char *chp) return chp; } +/* See documentation in common-utils.h. */ + +char * +skip_to_space (char *chp) +{ + return (char *) skip_to_space ((const char *) chp); +} + /* See common/common-utils.h. */ void |