|
|
BSD 4.3
/* copyip.c - copy a string array and return pointer to end */
char **copyip (p, q)
register char **p,
**q;
{
while (*p)
*q++ = *p++;
*q = 0;
return q;
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.