source: trunk/essentials/dev-lang/python/Python/memmove.c@ 3437

Last change on this file since 3437 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 439 bytes
Line 
1
2/* A perhaps slow but I hope correct implementation of memmove */
3
4extern char *memcpy(char *, char *, int);
5
6char *
7memmove(char *dst, char *src, int n)
8{
9 char *realdst = dst;
10 if (n <= 0)
11 return dst;