1999-05-03 09:29:11 +02:00
|
|
|
/* memcpy (the standard C function)
|
|
|
|
This function is in the public domain. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
libiberty: documentation markup and order fixes.
libiberty/:
* splay-tree.c: Escape wrapping newlines in texinfo markup
with '@', to fix function declaration output rendering.
* gather-docs: Relax and improve macro name matching to actually
match all current names and to allow input line wrapping.
* bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c,
hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c,
memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c,
pexecute.txh, random.c, setenv.c, setproctitle.c,
simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c,
strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c:
Wrap long texinfo input lines.
* functions.texi: Regenerate.
2011-02-03 08:23:59 +01:00
|
|
|
@deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, @
|
|
|
|
size_t @var{length})
|
2001-09-26 20:45:50 +02:00
|
|
|
|
|
|
|
Copies @var{length} bytes from memory region @var{in} to region
|
|
|
|
@var{out}. Returns a pointer to @var{out}.
|
|
|
|
|
|
|
|
@end deftypefn
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ansidecl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2005-03-28 04:09:01 +02:00
|
|
|
void bcopy (const void*, void*, size_t);
|
2003-04-15 05:53:53 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
PTR
|
2005-03-28 04:09:01 +02:00
|
|
|
memcpy (PTR out, const PTR in, size_t length)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
bcopy(in, out, length);
|
|
|
|
return out;
|
|
|
|
}
|