Crossware

Table of Contents        Previous topic       Next topic       

C COMPILER LIBRARY FUNCTION REFERENCE->Detailed Descriptions->strcat()

Summary

#include <string.h>

char *strcat(char* string1,const char* string2);Append one string to another

Parameters

    
string1String to be extended
string2String to be appended

Description

This function appends (concatenates) string2 onto the tail of
string1 to form an extended string string1.

Both string1 and string2 must be null terminated strings.


Return Value

The pointer to string1 is returned.