summaryrefslogtreecommitdiff
path: root/man3/wcscpy.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/wcscpy.3')
-rw-r--r--man3/wcscpy.34
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"