]> diplodocus.org Git - nmh/blob - docs/historical/mh-jun-1982/Extras/libh/copy.c
Updated documentation and comments about sendmail/pipe.
[nmh] / docs / historical / mh-jun-1982 / Extras / libh / copy.c
1 #ifdef COMMENT
2 Proprietary Rand Corporation, 1981.
3 Further distribution of this software
4 subject to the terms of the Rand
5 license agreement.
6 #endif
7
8 copy(from,to)
9 char *from, *to;
10 {
11 register char *rfrom, *rto;
12
13 rfrom = from;
14 rto = to;
15 while(*rto++ = *rfrom++);
16 return(rto-1);
17 };