char * str_cpy(char * dest, const char * from) { char * temp = dest; do *temp++ = *from; while(*from++); return dest; }