aboutsummaryrefslogtreecommitdiffstats
path: root/man3/iswgraph.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-05-12 09:06:04 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-05-12 09:06:04 +0000
commit60a90ecdae7bf6d1a91dc5d1d7177e400b114e47 (patch)
tree9f7c19a897084607a9688be5414d0d4cd6391b54 /man3/iswgraph.3
parentd92a60f2575c95cd532b822e4fb983c3a9e35641 (diff)
downloadman-pages-60a90ecdae7bf6d1a91dc5d1d7177e400b114e47.tar.gz
Convert function formatting of the form "\fBname\fP()" to ".BR name ()".
Diffstat (limited to 'man3/iswgraph.3')
-rw-r--r--man3/iswgraph.315
1 files changed, 11 insertions, 4 deletions
diff --git a/man3/iswgraph.3 b/man3/iswgraph.3
index 6045edbf37..3731942326 100644
--- a/man3/iswgraph.3
+++ b/man3/iswgraph.3
@@ -21,8 +21,11 @@ iswgraph \- test for graphic wide character
.BI "int iswgraph(wint_t " wc );
.fi
.SH DESCRIPTION
-The \fBiswgraph\fP() function is the wide-character equivalent of the
-\fBisgraph\fP(3) function.
+The
+.BR iswgraph ()
+function is the wide-character equivalent of the
+.BR isgraph (3)
+function.
It tests whether \fIwc\fP is a wide character
belonging to the wide-character class "graph".
.PP
@@ -44,7 +47,9 @@ wide-character class "print" except the space character.
It therefore contains
the wide-character classes "alnum" and "punct".
.SH "RETURN VALUE"
-The \fBiswgraph\fP() function returns non-zero
+The
+.BR iswgraph ()
+function returns non-zero
if \fIwc\fP is a wide character
belonging to the wide-character class "graph".
Otherwise it returns zero.
@@ -54,5 +59,7 @@ C99.
.BR isgraph (3),
.BR iswctype (3)
.SH NOTES
-The behaviour of \fBiswgraph\fP() depends on the LC_CTYPE category of the
+The behaviour of
+.BR iswgraph ()
+depends on the LC_CTYPE category of the
current locale.