From 9f235ec8ee1d9a08519707aed4b698867889b7fa Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 13 Jun 2024 12:59:34 -0400 Subject: Prevent false-positive result * Return zero on error --- include/str.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/str.h') diff --git a/include/str.h b/include/str.h index 895b8cc..595a055 100644 --- a/include/str.h +++ b/include/str.h @@ -29,7 +29,7 @@ int num_chars(const char *sptr, int ch); * * @param sptr string to scan * @param pattern string to search for - * @return 1 = found, 0 = not found, -1 = error + * @return 1 = found, 0 = not found / error */ int startswith(const char *sptr, const char *pattern); @@ -38,7 +38,7 @@ int startswith(const char *sptr, const char *pattern); * * @param sptr string to scan * @param pattern string to search for - * @return 1 = found, 0 = not found, -1 = error + * @return 1 = found, 0 = not found / error */ int endswith(const char *sptr, const char *pattern); -- cgit