]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/memccpy.3
time.1, _syscall.2, acct.2, getsockname.2, nanosleep.2, pciconfig_read.2, sched_get_p...
[thirdparty/man-pages.git] / man3 / memccpy.3
index 3026dc6d6b11a7ea7394cd097705a2167c8b57e9..652c097802882abcdc998a5ddb6867588652717f 100644 (file)
@@ -39,17 +39,34 @@ memccpy \- copy memory area
 .SH DESCRIPTION
 The
 .BR memccpy ()
-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.
+function copies no more than
+.I n
+bytes from
+memory area
+.I src
+to memory area
+.IR dest ,
+stopping when the
+character
+.I c
+is found.
 
 If the memory areas overlap, the results are undefined.
 .SH RETURN VALUE
 The
 .BR memccpy ()
 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.
+in
+.IR dest 
+after
+.IR c ,
+or NULL if
+.I c
+was not found in the
+first
+.I n
+characters of
+.IR src .
 .SH CONFORMING TO
 SVr4, 4.3BSD, POSIX.1-2001.
 .SH SEE ALSO