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

⟦c603ac8aa⟧ TextFile

    Length: 392 (0x188)
    Types: TextFile
    Names: »bcopy.c«

Derivation

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

TextFile

/* @(#)bcopy.c	1.1 5/15/88 03:03:50 */

/*
 * bcopy(b1, b2, n)  -  copy block b1 to b2 for n bytes.
 *
 * Caution:  This routine does not obey the full 4.3BSD bcopy semantics,
 *	     in that overlapping moves are not handled in any particularly
 *	     interresting manner.
 */
bcopy(b1, b2, n)
    char *b1;
    char *b2;
    unsigned n;
{
    while (n > 0) {
	*b2++ = *b1++;
	--n;
    }
}