d4d868a280
libiberty/: * splay-tree.c: Escape wrapping newlines in texinfo markup with '@', to fix function declaration output rendering. * gather-docs: Relax and improve macro name matching to actually match all current names and to allow input line wrapping. * bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c, hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c, memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c, pexecute.txh, random.c, setenv.c, setproctitle.c, simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c, strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c: Wrap long texinfo input lines. * functions.texi: Regenerate.
27 lines
533 B
C
27 lines
533 B
C
/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
|
|
/* This function is in the public domain. --Per Bothner. */
|
|
|
|
/*
|
|
|
|
@deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, @
|
|
size_t @var{count})
|
|
|
|
Copies @var{count} bytes from memory area @var{from} to memory area
|
|
@var{to}, returning a pointer to @var{to}.
|
|
|
|
@end deftypefn
|
|
|
|
*/
|
|
|
|
#include <ansidecl.h>
|
|
#include <stddef.h>
|
|
|
|
void bcopy (const void*, void*, size_t);
|
|
|
|
PTR
|
|
memmove (PTR s1, const PTR s2, size_t n)
|
|
{
|
|
bcopy (s2, s1, n);
|
|
return s1;
|
|
}
|