diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-12 09:06:04 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-05-12 09:06:04 +0000 |
commit | 60a90ecdae7bf6d1a91dc5d1d7177e400b114e47 (patch) | |
tree | 9f7c19a897084607a9688be5414d0d4cd6391b54 /man3/wcscpy.3 | |
parent | d92a60f2575c95cd532b822e4fb983c3a9e35641 (diff) |
Convert function formatting of the form "\fBname\fP()" to ".BR name ()".
Diffstat (limited to 'man3/wcscpy.3')
-rw-r--r-- | man3/wcscpy.3 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/man3/wcscpy.3 b/man3/wcscpy.3 index 69e7d616..db5427ac 100644 --- a/man3/wcscpy.3 +++ b/man3/wcscpy.3 @@ -21,8 +21,12 @@ 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(3) function. +The +.BR wcscpy () +function is the wide-character equivalent +of the +.BR strcpy (3) +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. @@ -33,7 +37,8 @@ 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. +.BR wcscpy () +returns \fIdest\fP. .SH "CONFORMING TO" C99. .SH "SEE ALSO" |