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
|
2017-12-04 11:43:30 +08:00
|
|
|
bcopy (const void *b1,
|
2017-12-04 09:31:41 +08:00
|
|
|
void *b2,
|
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
|
|
|
}
|