mirror of
https://github.com/samba-team/samba.git
synced 2025-01-04 05:18:06 +03:00
Doxygen janitor: add note that strequal is in fact case-insensitive.
(This used to be commit a4b9c5c257
)
This commit is contained in:
parent
e7ff3803a3
commit
e443560789
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user