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/wcscpy.3 | |
parent | ce9cb96e16485875d545897d73ec8378d6a7cf67 (diff) |
Automated addition of parentheses by add_parens_for_own_funcs.sh
Diffstat (limited to 'man3/wcscpy.3')
-rw-r--r-- | man3/wcscpy.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/wcscpy.3 b/man3/wcscpy.3 index a64919ec..09c0da44 100644 --- a/man3/wcscpy.3 +++ b/man3/wcscpy.3 @@ -21,7 +21,7 @@ wcscpy \- copy a wide character string .BI "wchar_t *wcscpy(wchar_t *" dest ", const wchar_t *" src ); .fi .SH DESCRIPTION -The \fBwcscpy\fP function is the wide-character equivalent of the \fBstrcpy\fP +The \fBwcscpy\fP() function is the wide-character equivalent of the \fBstrcpy\fP function. It copies the wide character string pointed to by \fIsrc\fP, including the terminating L'\\0' character, to the array pointed to by \fIdest\fP. @@ -31,7 +31,7 @@ The strings may not overlap. The programmer must ensure that there is room for at least \fIwcslen(src)+1\fP wide characters at \fIdest\fP. .SH "RETURN VALUE" -\fBwcscpy\fP returns \fIdest\fP. +\fBwcscpy\fP() returns \fIdest\fP. .SH "CONFORMING TO" ISO/ANSI C, UNIX98 .SH "SEE ALSO" |