#include char * strcpy (char * d, const char * from) { register char * to = d; while (*to++ = *from++); return d; }