binutils-gdb/libiberty/memcpy.c

27 lines
502 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* memcpy (the standard C function)
This function is in the public domain. */
/*
@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;
}