OSDN Git Service

(split) LDP: Update original to LDP v3.52.
[linuxjm/LDP_man-pages.git] / original / man3 / wcpcpy.3
index 9ae546c..e0eba54 100644 (file)
@@ -46,20 +46,24 @@ The
 function is the wide-character equivalent of the
 .BR stpcpy (3)
 function.
-It copies the wide-character string pointed to by \fIsrc\fP,
+It copies the wide-character string pointed to by
+.IR src ,
 including the terminating null wide character (L\(aq\\0\(aq),
 to the array pointed to by
-\fIdest\fP.
+.IR dest .
 .PP
 The strings may not overlap.
 .PP
 The programmer must ensure that there
-is room for at least \fIwcslen(src)+1\fP
-wide characters at \fIdest\fP.
+is room for at least
+.IR wcslen(src)+1
+wide characters at
+.IR dest .
 .SH RETURN VALUE
 .BR wcpcpy ()
 returns a pointer to the end of the wide-character string
-\fIdest\fP, that is, a pointer to the terminating null wide character.
+.IR dest ,
+that is, a pointer to the terminating null wide character.
 .SH CONFORMING TO
 POSIX.1-2008.
 .SH SEE ALSO