bcopy

bcopy

Function

bcopy

Copies a byte string

Syntax

#include <ultra64.h>        /* os.h */
void bcopy(const void *src,void *dst,int length);

Arguments

src
Source byte string to copy
dst
Address of target buffer to copy to
length
Data length

Return Value

None

Description

Copies the specified byte string. It is assumed that at least length bytes are secured for both the copy-target buffer and the source byte string.

Note

This function is designed for optimization at the assembler level, so the process can execute quickly.

See Also

bcmp, bzero

Revision History

02/01/99 Entirely revised