Staging
v0.5.1
https://github.com/python/cpython
Revision e250562182290e57127c9c3270391be420bd9720 authored by Andrew M. Kuchling on 26 October 2006, 19:11:42 UTC, committed by Andrew M. Kuchling on 26 October 2006, 19:11:42 UTC
1 parent 2e96ffc
Raw File
Tip revision: e250562182290e57127c9c3270391be420bd9720 authored by Andrew M. Kuchling on 26 October 2006, 19:11:42 UTC
[Bug #1579796] Wrong syntax for PyDateTime_IMPORT in documentation. Reported by David Faure.
Tip revision: e250562
memmove.c

/* A perhaps slow but I hope correct implementation of memmove */

extern char *memcpy(char *, char *, int);

char *
memmove(char *dst, char *src, int n)
{
	char *realdst = dst;
	if (n <= 0)
		return dst;
	if (src >= dst+n || dst >= src+n)
		return memcpy(dst, src, n);
	if (src > dst) {
		while (--n >= 0)
			*dst++ = *src++;
	}
	else if (src < dst) {
		src += n;
		dst += n;
		while (--n >= 0)
			*--dst = *--src;
	}
	return realdst;
}
back to top