Updated docs/README-ATTACHMENTS, mainly to reflect that no setup is
[mmh] / docs / historical / mh-6.8.5 / sbr / copyip.c
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 }