Concatentates cCount characters from pszSource onto pszDest and always NULL terminates the output.
- Parameters:
-
| pszDest | [in] A pointer to the destination string. |
| cDest | [in] The size of the destination string in bytes. |
| pszSource | [in] A pointer to the NULL terminated string to concatenate onto pszDest. |
| cCount | [in] The number of charcters in pszSource to concatentate onto pszDest. |
- Returns:
Success | P6R::eOk | |
Failure | P6R::eInvalidArg | pszDest or pszSource is NULL or cDest is zero |
P6R::eTooBig | There is not enough room in pszDest to copy the requested number of characters from pszSource. The output was truncated. |