The stcopy() function

The stcopy() function copies a null-terminated string from one location in memory to another location.

Syntax

void stcopy(from, to)
   char *from, *to;
from
A pointer to the null-terminated string to copy.
to
A pointer to a location in memory to which to copy the string.