diff options
Diffstat (limited to 'man3/wcscasecmp.3')
-rw-r--r-- | man3/wcscasecmp.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man3/wcscasecmp.3 b/man3/wcscasecmp.3 index 4f46483f..c817ffe9 100644 --- a/man3/wcscasecmp.3 +++ b/man3/wcscasecmp.3 @@ -20,12 +20,12 @@ wcscasecmp \- compare two wide-character strings, ignoring case .BI "int wcscasecmp(const wchar_t *" s1 ", const wchar_t *" s2 ); .fi .SH DESCRIPTION -The \fBwcscasecmp\fP function is the wide-character equivalent of the +The \fBwcscasecmp\fP() function is the wide-character equivalent of the \fBstrcasecmp\fP function. It compares the wide-character string pointed to by \fIs1\fP and the wide-character string pointed to by \fIs2\fP, ignoring case differences (\fBtowupper\fP, \fBtowlower\fP). .SH "RETURN VALUE" -The \fBwcscasecmp\fP function returns zero if the wide-character strings at +The \fBwcscasecmp\fP() function returns zero if the wide-character strings at \fIs1\fP and \fIs2\fP are equal except for case distinctions. It returns a positive integer if \fIs1\fP is greater than \fIs2\fP, ignoring case. It returns a negative integer if \fIs1\fP is smaller than \fIs2\fP, ignoring case. @@ -35,5 +35,5 @@ This function is a GNU extension. .BR strcasecmp (3), .BR wcscmp (3) .SH NOTES -The behaviour of \fBwcscasecmp\fP depends on the LC_CTYPE category of the +The behaviour of \fBwcscasecmp\fP() depends on the LC_CTYPE category of the current locale. |