Home
last modified time | relevance | path

Searched refs:strDest (Results 1 – 1 of 1) sorted by relevance

/utopia/UTPA2-700.0.x/modules/msos/msos/optee/
H A DMsOS_optee.c385 void msos_strcpy(char* strDest,const char* strSrc) in msos_strcpy() argument
387 if((strDest == NULL) || (strSrc == NULL)) in msos_strcpy()
392 while((*strDest++ = *strSrc++) != '\0'); in msos_strcpy()