string-helpers: update comments for str_equal()

This commit is contained in:
tokyo4j 2026-02-04 19:05:31 +09:00 committed by Hiroaki Yamamoto
parent 55a256f2fa
commit 7fabc6afe3

View file

@ -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 * str_equal - indicate whether two strings are identical
* @a: first string to compare * @a: first string to compare (can be NULL)
* @b: second string to compare * @b: second string to compare (can be NULL)
* *
* If both strings are NULL, returns true. * If both strings are NULL, returns true.
*/ */