Appends up to the first n characters of pStr2 to the end of pStr1.
Equivalent to the standard C library function strncat().
- Parameters
-
pStr1 | - Pointer to the string that pStr2 will be added to. Should not be NULL. |
pStr2 | - Pointer to the string to be added at the end of pStr1. Should not be NULL. |
n | The maximum number. Can be 0 , in which case no action is taken. |