摘要:
char * strdup(char *str) { char * strNew; assert(str != NULL); strNew = (char *)malloc(strlen(str)+1); strcpy(strNew,str); return strNew;} ... 阅读全文
posted @ 2014-11-12 02:36
xxxxxxxx1x2xxxxxxx
阅读(241)
评论(0)
推荐(0)
浙公网安备 33010602011771号