2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
FUNCTION
|
|
|
|
<<bcopy>>---copy memory regions
|
|
|
|
|
2017-11-30 16:20:06 +08:00
|
|
|
SYNOPSIS
|
2011-08-23 20:01:51 +08:00
|
|
|
#include <strings.h>
|
2002-05-24 02:46:04 +08:00
|
|
|
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
This function copies <[n]> bytes from the memory region
|
|
|
|
pointed to by <[in]> to the memory region pointed to by
|
|
|
|
<[out]>.
|
|
|
|
|
|
|
|
This function is implemented in term of <<memmove>>.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
<<bcopy>> requires no supporting OS subroutines.
|
|
|
|
|
|
|
|
QUICKREF
|
|
|
|
bcopy - pure
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2011-08-20 00:58:20 +08:00
|
|
|
#include <strings.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
_DEFUN (bcopy, (b1, b2, length),
|
2002-05-24 02:46:04 +08:00
|
|
|
_CONST void *b1 _AND
|
|
|
|
void *b2 _AND
|
2000-02-18 03:39:52 +08:00
|
|
|
size_t length)
|
|
|
|
{
|
2002-05-24 02:46:04 +08:00
|
|
|
memmove (b2, b1, length);
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|