Lstrcat

Appends a copy of one string to the end of a second string.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <string.h> 
   
  char *Lstrcat (
     char         *dst,   
     const char   *src);
  

Parameters

dst

(OUT) Points to the null-terminated string to which to append a copy of another string.

src

(IN) Points to the null-terminated string to be copied.

Return Values

Returns the value of dst.

Remarks

The Lstrcat function is a double-byte character interface. It appends a copy of the string pointed to by src (including the terminating NULL character) to the end of the string pointed to by dst. The first character of src overwrites the NULL character at the end of dst.

See Also

Lstrncat