gbdk-releases/sdcc/device/lib/_memcpy.c
2015-01-10 16:25:09 +01:00

79 lines
1.9 KiB
C

/*-------------------------------------------------------------------------
_memcpy.c - part of string library functions
Written By - Sandeep Dutta . sandeep.dutta@usa.net (1999)
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
what you give them. Help stamp out software-hoarding!
-------------------------------------------------------------------------*/
#include "string.h"
#include <sdcc-lib.h>
#if !_SDCC_PORT_PROVIDES_MEMCPY
#define NULL (void *)0
void * memcpy (
void * dst,
void * src,
int acount
)
{
#if _SDCC_Z80_STYLE_LIB_OPT
#pragma NOINDUCTION
char * d = dst;
char * s = src;
int count = -acount;
count /= 4;
while (count) {
*d++ = *s++;
*d++ = *s++;
*d++ = *s++;
*d++ = *s++;
count++;
}
if (acount & 2) {
*d++ = *s++;
*d++ = *s++;
}
if (acount & 1) {
*d++ = *s++;
}
return dst;
#else
void * ret = dst;
char * d = dst;
char * s = src;
/*
* copy from lower addresses to higher addresses
*/
while (acount--) {
*d++ = *s++;
}
return(ret);
#endif
}
#endif