ack/modules/src/string/btscpy.c
1987-03-10 09:24:02 +00:00

19 lines
331 B
C

/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* btscpy()
*/
char *
btscpy(b1, b2, n)
register char *b1, *b2;
register int n;
{
char *b1s = b1;
while (n-- > 0)
*b1++ = *b2++;
return b1s;
}