char * strdup(char *str) { char * strNew; assert(str != NULL); strNew = (); strcpy(strNew,str); return strNew; }