Lstrcpy

Copies a string.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

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

Parameters

dst

(OUT) Points to the array into which to copy the string.

src

(IN) Points to the string to be copied.

Return Values

Returns dst.

Remarks

The Lstrcpy function is a double-byte character interface. Copying of overlapping objects is not guaranteed to work properly.

See Also

Lstrncpy