blob: 324bc2db84416fa2290e75e9fc4017f51bbb058b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* memmove - some systems lack this */
#include "expect_cf.h"
#include "tcl.h"
/* like memcpy but can handle overlap */
#ifndef HAVE_MEMMOVE
char *
memmove(dest,src,n)
VOID *dest;
CONST VOID *src;
int n;
{
char *d;
CONST char *s;
d = dest;
s = src;
if (s<d && (d < s+n)) {
for (d+=n, s+=n; 0<n; --n)
*--d = *--s;
} else for (;0<n;--n) *d++ = *s++;
return dest;
}
#endif /* HAVE_MEMMOVE */
|