1: /* copyip.c - copy a string array and return pointer to end */
2:
3:
4: char **copyip (p, q)
5: register char **p,
6: **q;
7: {
8: while (*p)
9: *q++ = *p++;
10: *q = 0;
11:
12: return q;
13: }
Defined functions
copyip
defined in line
4;
never used