URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Go to most recent revision |
Only display areas with differences |
Details |
Blame |
View Log
Rev 148 |
Rev 158 |
/*
|
/*
|
FUNCTION
|
FUNCTION
|
<<bcopy>>---copy memory regions
|
<<bcopy>>---copy memory regions
|
|
|
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
#include <string.h>
|
#include <string.h>
|
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
|
void bcopy(const void *<[in]>, void *<[out]>, size_t <[n]>);
|
|
|
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
void bcopy(<[in]>, <[out]>, <[n]>
|
void bcopy(<[in]>, <[out]>, <[n]>
|
const void *<[in]>;
|
const void *<[in]>;
|
void *<[out]>;
|
void *<[out]>;
|
size_t <[n]>;
|
size_t <[n]>;
|
|
|
DESCRIPTION
|
DESCRIPTION
|
This function copies <[n]> bytes from the memory region
|
This function copies <[n]> bytes from the memory region
|
pointed to by <[in]> to the memory region pointed to by
|
pointed to by <[in]> to the memory region pointed to by
|
<[out]>.
|
<[out]>.
|
|
|
This function is implemented in term of <<memmove>>.
|
This function is implemented in term of <<memmove>>.
|
|
|
PORTABILITY
|
PORTABILITY
|
<<bcopy>> requires no supporting OS subroutines.
|
<<bcopy>> requires no supporting OS subroutines.
|
|
|
QUICKREF
|
QUICKREF
|
bcopy - pure
|
bcopy - pure
|
*/
|
*/
|
|
|
#include <string.h>
|
#include <string.h>
|
|
|
void
|
void
|
_DEFUN (bcopy, (b1, b2, length),
|
_DEFUN (bcopy, (b1, b2, length),
|
_CONST void *b1 _AND
|
_CONST void *b1 _AND
|
void *b2 _AND
|
void *b2 _AND
|
size_t length)
|
size_t length)
|
{
|
{
|
memmove (b2, b1, length);
|
memmove (b2, b1, length);
|
}
|
}
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.