]> diplodocus.org Git - nmh/blob - docs/historical/mh-6.8.5/sbr/RCS/copy.c,v
Exposed a bunch of switches that are now documented.
[nmh] / docs / historical / mh-6.8.5 / sbr / RCS / copy.c,v
1 head 1.2;
2 access;
3 symbols;
4 locks; strict;
5 comment @ * @;
6
7
8 1.2
9 date 92.01.23.23.11.24; author jromine; state Exp;
10 branches;
11 next 1.1;
12
13 1.1
14 date 91.08.06.17.22.10; author jromine; state Exp;
15 branches;
16 next ;
17
18
19 desc
20 @@
21
22
23 1.2
24 log
25 @typo
26 @
27 text
28 @/* copy.c - copy a string and return pointer to NULL terminator */
29
30
31 char *copy (from, to)
32 register char *from,
33 *to;
34 {
35 while (*to++ = *from++)
36 continue;
37
38 return (to - 1);
39 }
40 @
41
42
43 1.1
44 log
45 @Initial revision
46 @
47 text
48 @d12 1
49 a12 1
50 };
51 @