Home
last modified time | relevance | path

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

/external/fastrpc/src/
Dstd.c141 int std_strlcpy(char* pcDst, const char* cpszSrc, int nDestSize) in std_strlcpy() argument
143 int nLen = std_strlen(cpszSrc); in std_strlcpy()
149 (void)std_memmove(pcDst, cpszSrc, n); in std_strlcpy()
157 int std_strlcat(char* pcDst, const char* cpszSrc, int nDestSize) in std_strlcat() argument
165 return nLen + std_strlcpy(pcDst+nLen, cpszSrc, nDestSize-nLen); in std_strlcat()