bzero

bzero

Function

bzero

Zero-clears a byte string

Function

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

Arguments

dst
Buffer address
length
Data length

Return Value

None

Description

Zero-clears the specified buffer. It is assumed that at least length bytes are secured for the buffer.

Note

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

See Also

bcmp, bcopy

Revision History

02/01/99 Entirely revised