diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-12 09:06:04 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-12 09:06:04 +0000 |
commit | 60a90ecdae7bf6d1a91dc5d1d7177e400b114e47 (patch) | |
tree | 9f7c19a897084607a9688be5414d0d4cd6391b54 /man3/wctype.3 | |
parent | d92a60f2575c95cd532b822e4fb983c3a9e35641 (diff) |
Convert function formatting of the form "\fBname\fP()" to ".BR name ()".
Diffstat (limited to 'man3/wctype.3')
-rw-r--r-- | man3/wctype.3 | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/man3/wctype.3 b/man3/wctype.3 index c8c50486..0b57b621 100644 --- a/man3/wctype.3 +++ b/man3/wctype.3 @@ -27,11 +27,15 @@ In other words, it represents a class of wide characters. This type's nature is implementation dependent, but the special value \fI(wctype_t)0\fP denotes an invalid property. Nonzero \fBwctype_t\fP values -can be passed to the \fBiswctype\fP(3) function +can be passed to the +.BR iswctype (3) +function to actually test whether a given wide character has the property. .PP -The \fBwctype\fP() function returns a property, given by its name. +The +.BR wctype () +function returns a property, given by its name. The set of valid names depends on the LC_CTYPE category of the current locale, but the following names are valid in all locales. @@ -50,7 +54,9 @@ following names are valid in all locales. "xdigit" \- realizes the \fBisxdigit\fP(3) classification function .fi .SH "RETURN VALUE" -The \fBwctype\fP() function returns a property descriptor +The +.BR wctype () +function returns a property descriptor if the \fIname\fP is valid. Otherwise it returns \fI(wctype_t)0\fP. .SH "CONFORMING TO" @@ -58,5 +64,7 @@ C99. .SH "SEE ALSO" .BR iswctype (3) .SH NOTES -The behaviour of \fBwctype\fP() depends on the LC_CTYPE category of the +The behaviour of +.BR wctype () +depends on the LC_CTYPE category of the current locale. |