From 7fabc6afe3837f4270a96e55cf08bf095b86e40a Mon Sep 17 00:00:00 2001 From: tokyo4j Date: Wed, 4 Feb 2026 19:05:31 +0900 Subject: [PATCH] string-helpers: update comments for str_equal() --- include/common/string-helpers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/common/string-helpers.h b/include/common/string-helpers.h index 35c994b2..360f1d8c 100644 --- a/include/common/string-helpers.h +++ b/include/common/string-helpers.h @@ -90,8 +90,8 @@ bool str_starts_with(const char *s, char needle, const char *ignore_chars); /** * str_equal - indicate whether two strings are identical - * @a: first string to compare - * @b: second string to compare + * @a: first string to compare (can be NULL) + * @b: second string to compare (can be NULL) * * If both strings are NULL, returns true. */