diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2005-10-19 06:54:38 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2005-10-19 06:54:38 +0000 |
commit | e511ffb6bcaa9a584412a95e602435827e302033 (patch) | |
tree | 79a5a572acdc2e97d1ea0640b3a63f567e1a00a8 /man3/wcscspn.3 | |
parent | ce9cb96e16485875d545897d73ec8378d6a7cf67 (diff) |
Automated addition of parentheses by add_parens_for_own_funcs.sh
Diffstat (limited to 'man3/wcscspn.3')
-rw-r--r-- | man3/wcscspn.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/wcscspn.3 b/man3/wcscspn.3 index 33dd0d223..a540b04ee 100644 --- a/man3/wcscspn.3 +++ b/man3/wcscspn.3 @@ -21,14 +21,14 @@ 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 +The \fBwcscspn\fP() function is the wide-character equivalent of the \fBstrcspn\fP 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 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 wide characters in the longest +The \fBwcscspn\fP() 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. In other words, it returns the position of the first occurrence in the wide-character string \fIwcs\fP of any of the characters in |