Searched refs:pwcDst (Results 1 – 1 of 1) sorted by relevance
225 int std_wstrlcpy(AECHAR* pwcDst, const AECHAR* cpwszSrc, int nDestSize) in std_wstrlcpy() argument234 (void)std_memsmove(pwcDst, nDestSize*sizeof(AECHAR), in std_wstrlcpy()237 pwcDst[n] = 0; in std_wstrlcpy()243 int std_wstrlcat(AECHAR* pwcDst, const AECHAR* cpwszSrc, int nDestSize) in std_wstrlcat() argument247 while ((nLen < nDestSize) && (0 != pwcDst[nLen])) { in std_wstrlcat()251 return nLen + std_wstrlcpy(pwcDst+nLen, cpwszSrc, nDestSize-nLen); in std_wstrlcat()