ack/modules/src/string/btscat.c

18 lines
363 B
C

/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* btscat()
*/
#include "ack_string.h"
char *btscat(char* b1, int n1, register char *b2, register int n2)
{
register char *b = b1 + n1;
while (n2-- > 0)
*b++ = *b2++;
return b1;
}