Searched refs:pszDst2 (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A DRTStrCat.cpp37 char *pszDst2 = RTStrEnd(pszDst, cbDst); local
38 AssertReturn(pszDst2, VERR_INVALID_PARAMETER);
39 cbDst -= pszDst2 - pszDst;
44 memcpy(pszDst2, pszSrc, cchSrc + 1);
50 memcpy(pszDst2, pszSrc, cbDst - 1);
51 pszDst2[cbDst - 1] = '\0';
H A DRTStrCatEx.cpp37 char *pszDst2 = RTStrEnd(pszDst, cbDst); local
38 AssertReturn(pszDst2, VERR_INVALID_PARAMETER);
39 cbDst -= pszDst2 - pszDst;
45 memcpy(pszDst2, pszSrc, cchSrc);
46 pszDst2[cchSrc] = '\0';
52 memcpy(pszDst2, pszSrc, cbDst - 1);
53 pszDst2[cbDst - 1] = '\0';

Completed in 47 milliseconds