ack/modules/src/string/btszero.c
1991-10-16 11:41:33 +00:00

21 lines
317 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)
char *b;
register int n;
{
register char *s = b;
while (n-- > 0)
*s++ = '\0';
return b;
}