Name
strcpy -- Copy a string
Description
The
strcpy function copies the string pointed to by
s2 (including the terminating null
character) into the array pointed to by s1. If copying takes place between objects
that overlap then the behavior is undefined.
Returns
The
strcpy function returns the value of s1.
Implementation Notes
None