aboutsummaryrefslogtreecommitdiffstats
path: root/man3/memccpy.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
commit63aa9df02fee88a559822c460ab5a30f1d8414ee (patch)
treefedc607745a57e06a1a541feca62e18d51523ddb /man3/memccpy.3
parente511ffb6bcaa9a584412a95e602435827e302033 (diff)
downloadman-pages-63aa9df02fee88a559822c460ab5a30f1d8414ee.tar.gz
Automated unformatting of parentheses using unformat_parens.sh
Diffstat (limited to 'man3/memccpy.3')
-rw-r--r--man3/memccpy.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/memccpy.3 b/man3/memccpy.3
index 8b0cf5d315..a0a42006b8 100644
--- a/man3/memccpy.3
+++ b/man3/memccpy.3
@@ -35,11 +35,11 @@ memccpy \- copy memory area
.BI "void *memccpy(void *" dest ", const void *" src ", int " c ", size_t " n );
.fi
.SH DESCRIPTION
-The \fBmemccpy()\fP function copies no more than \fIn\fP bytes from
+The \fBmemccpy\fP() function copies no more than \fIn\fP bytes from
memory area \fIsrc\fP to memory area \fIdest\fP, stopping when the
character \fIc\fP is found.
.SH "RETURN VALUE"
-The \fBmemccpy()\fP function returns a pointer to the next character
+The \fBmemccpy\fP() function returns a pointer to the next character
in \fIdest\fP after \fIc\fP, or NULL if \fIc\fP was not found in the
first \fIn\fP characters of \fIsrc\fP.
.SH "CONFORMING TO"