summaryrefslogtreecommitdiff
path: root/man3/memccpy.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-04-12 22:42:49 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-04-12 22:42:49 +0000
commitc13182efa3b3d77f2563034c8212c0ca798243ca (patch)
treee7652b26018b7c22cd6a4e4b41404dfaab911303 /man3/memccpy.3
parent4174ff5658082832c2ed511720f18881b3a80a34 (diff)
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
white space.
Diffstat (limited to 'man3/memccpy.3')
-rw-r--r--man3/memccpy.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man3/memccpy.3 b/man3/memccpy.3
index 0219ef9c5..ac9fb4908 100644
--- a/man3/memccpy.3
+++ b/man3/memccpy.3
@@ -8,7 +8,7 @@
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
-.\"
+.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
@@ -16,7 +16,7 @@
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
-.\"
+.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
@@ -35,12 +35,12 @@ 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
-in \fIdest\fP after \fIc\fP, or NULL if \fIc\fP was not found in the
+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"
SVr4, 4.3BSD, C99