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
Index: T b

⟦91daa301a⟧ TextFile

    Length: 562 (0x232)
    Types: TextFile
    Names: »bstring.tex«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/lib/MAN/bstring.tex« 

TextFile

\manual BSTRING(3){}
\name
bcopy, bzero, ffs---bit and byte string operations
\synopsis
bcopy(src, dst, length)
char *src, *dst;
int length;

bzero(b, length)
char *b;
int length;
\endsyn
\description
The routines \i{bcopy} and \i{bzero} operate on variable length
strings of bytes.  They do not check for null bytes as the routines
in \i{string}(3) do.

\i{Bcopy} copies \i{length} bytes from string \i{src} to the string
\i{dst}.

\i{Bzero} places \i{length} 0 bytes in the string \i{b1}.
\bugs
The \i{bcopy} routine take parameters backwards from \i{strcpy}.