summaryrefslogtreecommitdiff
path: root/man3/iswlower.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-04-24 19:40:35 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-04-24 19:40:35 +0000
commitd0f17b5722cf0384bfed91effce12b702b1711b8 (patch)
treed5d747cee309ef31a04bec6681a3c0c899e7fc3c /man3/iswlower.3
parentf94498eeb8736be4773ee06e3e9b0357d60cd7a2 (diff)
s/wide character/wide-character/ when used attributively.
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 c710a539a..8d95a1ecd 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.