1999-05-03 15:29:11 +08:00
|
|
|
/* memcpy (the standard C function)
|
|
|
|
This function is in the public domain. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2001-09-27 02:45:50 +08:00
|
|
|
@deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
|
|
|
|
|
|
|
|
Copies @var{length} bytes from memory region @var{in} to region
|
|
|
|
@var{out}. Returns a pointer to @var{out}.
|
|
|
|
|
|
|
|
@end deftypefn
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ansidecl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2005-03-28 10:09:01 +08:00
|
|
|
void bcopy (const void*, void*, size_t);
|
2003-04-15 11:53:53 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
PTR
|
2005-03-28 10:09:01 +08:00
|
|
|
memcpy (PTR out, const PTR in, size_t length)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
bcopy(in, out, length);
|
|
|
|
return out;
|
|
|
|
}
|