StrCat Function

Concatenates one string onto another.

int StrCat(char[] buffer, int maxlength, const char[] source)

Parameters

char[] buffer

String to append to.

int maxlength

Maximum length of entire buffer.

const char[] source

Source string to concatenate.

Return Value

Number of bytes written.