Home
last modified time | relevance | path

Searched refs:strSrc (Results 1 – 3 of 3) 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()
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DMsOS_ecos.c348 char *UTL_strcpy(char *strDst, const char *strSrc) in UTL_strcpy() argument
352 for(i=0;strSrc[i];i++) in UTL_strcpy()
354 strDst[i] = strSrc[i]; in UTL_strcpy()
/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A DMsOS_ucos.c370 char *UTL_strcpy(char *strDst, const char *strSrc) in UTL_strcpy() argument
374 for(i=0;strSrc[i];i++) in UTL_strcpy()
376 strDst[i] = strSrc[i]; in UTL_strcpy()