OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [string/] [bcopy.c] - Diff between revs 1010 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1010 Rev 1765
/*
/*
FUNCTION
FUNCTION
        <<bcopy>>---copy memory regions
        <<bcopy>>---copy memory regions
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <string.h>
        #include <string.h>
        void bcopy(const char *<[in]>, char  *<[out]>, size_t <[n]>);
        void bcopy(const char *<[in]>, char  *<[out]>, size_t <[n]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        void bcopy(<[in]>, <[out]>, <[n]>
        void bcopy(<[in]>, <[out]>, <[n]>
        char *<[in]>;
        char *<[in]>;
        char *<[out]>;
        char *<[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 char *b1 _AND
        _CONST char *b1 _AND
        char *b2 _AND
        char *b2 _AND
        size_t length)
        size_t length)
{
{
  memmove ((_PTR) b2, (_PTR) b1, length);
  memmove ((_PTR) b2, (_PTR) b1, length);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.