Doxygen janitor: add note that strequal is in fact case-insensitive.
authorMartin Pool <mbp@samba.org>
Fri, 28 Feb 2003 05:34:19 +0000 (05:34 +0000)
committerMartin Pool <mbp@samba.org>
Fri, 28 Feb 2003 05:34:19 +0000 (05:34 +0000)
(This used to be commit a4b9c5c2576c80a5f60d47d178b9b8c50d348893)

source3/lib/util_str.c

index cc4b6fe5c5910676e21c54ca935869c57d41cc6d..070c59c1b2e17e9e5d5dc3e21f34bbc287fa6c91 100644 (file)
@@ -164,9 +164,10 @@ int StrnCaseCmp(const char *s, const char *t, size_t n)
 }
 
 /**
- Compare 2 strings.
-**/
-
+ * Compare 2 strings.
+ *
+ * @note The comparison is case-insensitive.
+ **/
 BOOL strequal(const char *s1, const char *s2)
 {
        if (s1 == s2)
@@ -178,9 +179,10 @@ BOOL strequal(const char *s1, const char *s2)
 }
 
 /**
- Compare 2 strings up to and including the nth char.
-**/
-
+ * Compare 2 strings up to and including the nth char.
+ *
+ * @note The comparison is case-insensitive.
+ **/
 BOOL strnequal(const char *s1,const char *s2,size_t n)
 {
   if (s1 == s2)