string.h函数的实现 char *strcpy_1(char *dst,const char *src)   {    while(*dst++=*src++);    return dst;    //notice: wrong return!!!!   } //this is a fault function   // Left it to remind me never commit the same question      char * strcpy_2(char * dst, const char * src)      {    char * cp = dst;/