aboutsummaryrefslogtreecommitdiffstats
path: root/man3/iswlower.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/iswlower.3')
-rw-r--r--man3/iswlower.338
1 files changed, 19 insertions, 19 deletions
diff --git a/man3/iswlower.3 b/man3/iswlower.3
index c710a539aa..8d95a1ecd1 100644
--- a/man3/iswlower.3
+++ b/man3/iswlower.3
@@ -24,41 +24,41 @@ iswlower \- test for lowercase wide character
The \fBiswlower\fP() function is the wide-character equivalent of the
\fBislower\fP() function.
It tests whether \fIwc\fP is a wide character
-belonging to the wide character class "lower".
+belonging to the wide-character class "lower".
.PP
-The wide character class "lower" is a subclass of the wide character class
+The wide-character class "lower" is a subclass of the wide-character class
"alpha", and therefore also a subclass
-of the wide character class "alnum", of
-the wide character class "graph" and of the wide character class "print".
+of the wide-character class "alnum", of
+the wide-character class "graph" and of the wide-character class "print".
.PP
-Being a subclass of the wide character class "print",
-the wide character class
-"lower" is disjoint from the wide character class "cntrl".
+Being a subclass of the wide-character class "print",
+the wide-character class
+"lower" is disjoint from the wide-character class "cntrl".
.PP
-Being a subclass of the wide character class "graph",
-the wide character class "lower" is disjoint from the
-wide character class "space" and its subclass "blank".
+Being a subclass of the wide-character class "graph",
+the wide-character class "lower" is disjoint from the
+wide-character class "space" and its subclass "blank".
.PP
-Being a subclass of the wide character class "alnum",
-the wide character class
-"lower" is disjoint from the wide character class "punct".
+Being a subclass of the wide-character class "alnum",
+the wide-character class
+"lower" is disjoint from the wide-character class "punct".
.PP
-Being a subclass of the wide character class "alpha",
-the wide character class
-"lower" is disjoint from the wide character class "digit".
+Being a subclass of the wide-character class "alpha",
+the wide-character class
+"lower" is disjoint from the wide-character class "digit".
.PP
-The wide character class "lower" contains at least
+The wide-character class "lower" contains at least
those characters \fIwc\fP
which are equal to \fItowlower(wc)\fP and different
from \fItowupper(wc)\fP.
.PP
-The wide character class "lower" always contains
+The wide-character class "lower" always contains
at least the letters 'a'
to 'z'.
.SH "RETURN VALUE"
The \fBiswlower\fP() function returns non-zero
if \fIwc\fP is a wide character
-belonging to the wide character class "lower".
+belonging to the wide-character class "lower".
Otherwise it returns zero.
.SH "CONFORMING TO"
C99.