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/wcscspn.3 | |
parent | d92a60f2575c95cd532b822e4fb983c3a9e35641 (diff) |
Convert function formatting of the form "\fBname\fP()" to ".BR name ()".
Diffstat (limited to 'man3/wcscspn.3')
-rw-r--r-- | man3/wcscspn.3 | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/man3/wcscspn.3 b/man3/wcscspn.3 index dd444ef1..c6c84a21 100644 --- a/man3/wcscspn.3 +++ b/man3/wcscspn.3 @@ -21,8 +21,12 @@ wcscspn \- search a wide-character string for any of a set of wide characters .BI "size_t wcscspn(const wchar_t *" wcs ", const wchar_t *" reject ); .fi .SH DESCRIPTION -The \fBwcscspn\fP() function is the wide-character equivalent -of the \fBstrcspn\fP(3) function. +The +.BR wcscspn () +function is the wide-character equivalent +of the +.BR strcspn (3) +function. It determines the length of the longest initial segment of \fIwcs\fP which consists entirely of wide-characters not listed in \fIreject\fP. In @@ -30,7 +34,9 @@ other words, it searches for the first occurrence in the wide-character string \fIwcs\fP of any of the characters in the wide-character string \fIreject\fP. .SH "RETURN VALUE" -The \fBwcscspn\fP() function returns the number of +The +.BR wcscspn () +function returns the number of wide characters in the longest initial segment of \fIwcs\fP which consists entirely of wide-characters not listed in \fIreject\fP. |