1. NAME

strcpy - Copy a NUL terminated string

2. SYNOPSIS

char * strcpy(char *  dest , const char *  src );

3. ARGUMENTS

dest
    Where to copy the string to

src
    Where to copy the string from

4. COPYRIGHT