STD_ConcatenateString

C Specification

#include <nitro/std.h>

char* STD_ConcatenateString( char* str1, const char* str2 );
char* STD_StrCat( char* str1, const char* str2 );

Arguments

str1 Specifies the pointer to the concatenation string destination.
str2 Specifies the pointer to the concatenation string source.

Return Values

Returns the pointer to the concatenated string.

Description

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().

See Also

Revision History

10/05/2005 Initial version.

CONFIDENTIAL