stcopy()

Copies a string to another location.

Syntax

void stcopy(char *src, char *dst);
  1. src is a pointer to the string that you want to copy.
  2. dst is a pointer to a location in memory where the string is copied.