binutils-gdb/libiberty/memmove.c

27 lines
533 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
/* This function is in the public domain. --Per Bothner. */
2001-09-26 20:45:50 +02:00
/*
@deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, @
size_t @var{count})
2001-09-26 20:45:50 +02:00
Copies @var{count} bytes from memory area @var{from} to memory area
@var{to}, returning a pointer to @var{to}.
@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
memmove (PTR s1, const PTR s2, size_t n)
1999-05-03 09:29:11 +02:00
{
bcopy (s2, s1, n);
return s1;
}