void move(char *c_from, char *c_to, long stride, unsigned long u) { while (u-- > 0) *c_to++ = *c_from++; }