gdb/ChangeLog:
* gdbsupport/common-utils.h (startswith): Change return type to
bool.
Change-Id: I1c11b9bb7f89b3885c1bb55097adb5be6d333ad4
+2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * gdbsupport/common-utils.h (startswith): Change return type to
+ bool.
+
2019-10-19 Christian Biesinger <cbiesinger@google.com>
* bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
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;