char * strdup(char *str)
{
   char * strNew;
   assert(str != NULL);
   strNew = ();
   strcpy(strNew,str);
   return strNew;
}    
05-11 18:09