tack/modules/src/string/btscpy.c
1993-11-10 12:09:49 +00:00

22 lines
356 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()
*/
#include "ack_string.h"
char *
btscpy(b1, b2, n)
register char *b1, *b2;
register int n;
{
char *b1s = b1;
while (n-- > 0)
*b1++ = *b2++;
return b1s;
}