char*__cdecl strcpy(char*dst,constchar*src) { char*cp=dst; while(*cp++=*src++);/*Copy src over dst*/ return( dst ); }