char *
strcpy(char *to, char *from)
{
assert((to != NULL) && (from != NULL));
char *save = to;
for (; (*to = *from) != '\0'; ++from, ++to)
{
}
return save;
}
char *
strcpy(char *to, char *from)
{
assert((to != NULL) && (from != NULL));
char *save = to;
for (; (*to = *from) != '\0'; ++from, ++to)
{
}
return save;
}