|
|
BSD 4.3reno
/* copy.c - copy a string and return pointer to NULL terminator */
char *copy (from, to)
register char *from,
*to;
{
while (*to++ = *from++)
continue;
return (to - 1);
};
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.