[review] Make startswith return a bool

Simon Marchi (Code Review) gerrit@gnutoolchain-gerrit.osci.io
Sat Oct 19 20:53:00 GMT 2019


Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/162
......................................................................

Make startswith return a bool

gdb/ChangeLog:

	* gdbsupport/common-utils.h (startswith): Change return type to
	bool.

Change-Id: I1c11b9bb7f89b3885c1bb55097adb5be6d333ad4
---
M gdb/gdbsupport/common-utils.h
1 file 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 @@
 
 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;



More information about the Gdb-patches mailing list