URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [expect/] [exp_memmove.c] - Rev 1772
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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 */
Go to most recent revision | Compare with Previous | Blame | View Log