Updated Spanish translations.
[binutils.git] / libiberty / memcpy.c
blob9b5b24295df6c5e1a7e85264b7287f97e52a1a32
1 /* memcpy (the standard C function)
2 This function is in the public domain. */
4 /*
6 @deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
8 Copies @var{length} bytes from memory region @var{in} to region
9 @var{out}. Returns a pointer to @var{out}.
11 @end deftypefn
15 #include <ansidecl.h>
16 #include <stddef.h>
18 void bcopy (const void*, void*, size_t);
20 PTR
21 memcpy (PTR out, const PTR in, size_t length)
23 bcopy(in, out, length);
24 return out;