2000-02-17 19:39:52 +00:00
|
|
|
/*
|
|
|
|
FUNCTION
|
|
|
|
<<bcopy>>---copy memory regions
|
|
|
|
|
2017-11-30 02:20:06 -06:00
|
|
|
SYNOPSIS
|
2011-08-23 12:01:51 +00:00
|
|
|
#include <strings.h>
|
2002-05-23 18:46:04 +00:00
|
|
|
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
|
2000-02-17 19:39:52 +00: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-19 16:58:20 +00:00
|
|
|
#include <strings.h>
|
2000-02-17 19:39:52 +00:00
|
|
|
|
|
|
|
void
|
2017-12-03 21:43:30 -06:00
|
|
|
bcopy (const void *b1,
|
2017-12-03 19:31:41 -06:00
|
|
|
void *b2,
|
2000-02-17 19:39:52 +00:00
|
|
|
size_t length)
|
|
|
|
{
|
2002-05-23 18:46:04 +00:00
|
|
|
memmove (b2, b1, length);
|
2000-02-17 19:39:52 +00:00
|
|
|
}
|