Added all of the MH sources, including RCS files, in
[mmh] / docs / historical / mh-6.8.5 / sbr / copy.c
1 /* copy.c - copy a string and return pointer to NULL terminator */
2
3
4 char   *copy (from, to)
5 register char  *from,
6                *to;
7 {
8     while (*to++ = *from++)
9         continue;
10
11     return (to - 1);
12 }