DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦436ace423⟧ TextFile

    Length: 179 (0xb3)
    Types: TextFile
    Names: »bzero.c«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦2fafebccf⟧ »EurOpenD3/mail/smail3.1.19.tar.Z« 
        └─⟦bcd2bc73f⟧ 
            └─⟦this⟧ »pd/strlib/bzero.c« 

TextFile

/* @(#)bzero.c	1.1 5/15/88 03:03:44 */

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