diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2019-10-19 17:00:35 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2019-10-19 17:01:09 -0400 |
commit | 2377111731972d841731bc674ed6a7fb3ab90a53 (patch) | |
tree | 75a2c2879cbda6dfb76e1fbf5110fc688c55811d /gdb/gdbsupport | |
parent | 39ef2f6256737db92f5d60fa201fe0b301bb8100 (diff) | |
download | gdb-2377111731972d841731bc674ed6a7fb3ab90a53.zip gdb-2377111731972d841731bc674ed6a7fb3ab90a53.tar.gz gdb-2377111731972d841731bc674ed6a7fb3ab90a53.tar.bz2 |
gdb: Make startswith return a bool
gdb/ChangeLog:
* gdbsupport/common-utils.h (startswith): Change return type to
bool.
Change-Id: I1c11b9bb7f89b3885c1bb55097adb5be6d333ad4
Diffstat (limited to 'gdb/gdbsupport')
-rw-r--r-- | gdb/gdbsupport/common-utils.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/gdbsupport/common-utils.h b/gdb/gdbsupport/common-utils.h index a5312cb..e96fc21 100644 --- a/gdb/gdbsupport/common-utils.h +++ b/gdb/gdbsupport/common-utils.h @@ -110,10 +110,9 @@ std::string extract_string_maybe_quoted (const char **arg); extern char *safe_strerror (int); -/* Return non-zero if the start of STRING matches PATTERN, zero - otherwise. */ +/* Return true if the start of STRING matches PATTERN, false otherwise. */ -static inline int +static inline bool startswith (const char *string, const char *pattern) { return strncmp (string, pattern, strlen (pattern)) == 0; |