Important: The information in this document is obsolete and should not be used for new development.
OTStrCat
Concatenates two C strings.C INTERFACE
void OTStrCat (char* dest, const char* src)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
dest
- A zero-terminated string to which you want to concatenate the string specified by the
src
parameter.src
- A zero-terminated string that you want to concatenate to the string specified by the
dest
parameter.