/* public domain rewrite of memcmp(3) */ void * memmove (d, s, n) void *d, *s; int n; { char *dst = d; char *src = s; void *ret = dst; if (src < dst) { src += n; dst += n; while (n--) *--dst = *--src; } else if (dst < src) while (n--) *dst++ = *src++; return ret; } ='/'>cgit logo index : ruby.git
The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/benchmark/vm_fiber_reuse.yml
AgeCommit message (Expand)Author