__bzero

Purpose

Sets the first n bytes of the byte area starting at s to zero.

Prototype

void bzero(void* s, size_t n);

Parameters

n
The size of the data.
s
The starting address in the byte area.