Pristine Ack-5.5
[Ack-5.5.git] / modules / src / string / btscpy.c
1 /* $Id: btscpy.c,v 1.5 1994/06/24 11:22:31 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 /* btscpy()
7 */
8
9 #include "ack_string.h"
10
11 char *
12 btscpy(b1, b2, n)
13         register char *b1, *b2;
14         register int n;
15 {
16         char *b1s = b1;
17
18         while (n-- > 0)
19                 *b1++ = *b2++;
20         return b1s;
21 }