#include <nitro/std.h>
char* STD_ConcatenateString( char* str1, const char* str2 );
char* STD_StrCat( char* str1, const char* str2 );
| str1 | Specifies the pointer to the concatenation string destination. |
| str2 | Specifies the pointer to the concatenation string source. |
Returns the pointer to the concatenated string.
The string str2 is concatenated with the string str1. It carries out the same operation as the C standard function strcat().
STD_StrCat() is defined as another name for STD_StrConcatenateString().
10/05/2005 Initial version.
CONFIDENTIAL