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

21 lines
363 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".
*/
/* btscat()
*/
char *
btscat(b1, n1, b2, n2)
char *b1;
int n1;
register char *b2;
register int n2;
{
register char *b = b1 + n1;
while (n2-- > 0)
*b++ = *b2++;
return b1;
}