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

16 lines
289 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".
*/
/* btszero()
*/
char *
btszero(b, n)
register char *b;
register int n;
{
while (n-- > 0)
*b++ = '\0';
}