慕姐8265434
char * strdup(const char * s){
size_t len = 1+strlen(s);
char *p = malloc(len);
return p ? memcpy(p, s, len) : NULL;}也许代码比使用strcpy()就像\0CHAR不需要再被搜索(它已经和strlen()).