1 /* memcpy (the standard C function)
2 This function is in the public domain. */
6 memcpy -- copy memory regions of arbitary length
9 void* memcpy (void *out, const void *in, size_t n);
12 Copy LENGTH bytes from memory region pointed to by IN to memory
13 region pointed to by OUT.
20 #define size_t unsigned long
24 DEFUN(memcpy
, (out
, in
, length
), PTR out AND
const PTR in AND
size_t length
)
26 bcopy(in
, out
, length
);