ftp.nice.ch/pub/next/unix/mail/smail3.1.20.s.tar.gz#/smail3.1.20/pd/strlib/bzero.c

This is bzero.c in view mode; [Download] [Up]

/* @(#)pd/strlib/bzero.c	1.2 24 Oct 1990 05:19:25 */

/*
 * bzero(b, n)  -  zero out n bytes at b
 */
bzero(b, n)
    char *b;
    unsigned n;
{
    while (n > 0) {
	*b++ = '\0';
	--n;
    }
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.