]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/wcscpy.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / wcscpy.3
index e1603da6b8ecddcf52a553aeedb9921067f5ef5c..a7ad85ec35b10dc753f2198fb35a0223f7c23e24 100644 (file)
@@ -21,14 +21,16 @@ 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()
-function. It copies the wide character string pointed to by \fIsrc\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.
 .PP
 The strings may not overlap.
 .PP
-The programmer must ensure that there is room for at least \fIwcslen(src)+1\fP
+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.