strcpy

strcpy, strcpy_s

Defined in header <string.h>
(1)
char *strcpy( char *dest, const char *src );
(until C99)
char *strcpy( char *restrict dest, const char *restrict src );
(since C99)
errno_t strcpy_s(char *restrict dest, rsize_t destsz, const char *restrict src);
(2) (since C11)
1) Copies the null-t