Concept Framework 2.2 documentation Contents | Index

standard.C.string.strcat

Name Version Deprecated
strcat version 1.0 no

Prototype:
string strcat(string strDestination, string strSource)

Parameters:
strDestination      Null-terminated destination string.
strSource      Null-terminated source string.

Description:
Append a string. The strcat function appends strSource to strDestination and terminates the resulting string with a null character. The initial character of strSource overwrites the terminating null character of strDestination. The behavior of strcat is undefined if the source and destination strings overlap.

Returns:
Returns the destination string (strDestination).

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:16 2013 GMT(c)2013 Devronium Applications