Searched refs:strDest (Results 1 – 1 of 1) sorted by relevance
385 void msos_strcpy(char* strDest,const char* strSrc) in msos_strcpy() argument387 if((strDest == NULL) || (strSrc == NULL)) in msos_strcpy()392 while((*strDest++ = *strSrc++) != '\0'); in msos_strcpy()