ack/modules/src/string/btscat.c
1987-03-09 15:15:03 +00:00

20 lines
348 B
C

/*
* (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;
}