Sets a memory array to binary zeros.
void bzero (void * area, size_t size);
Required Header |
<string.h> |
Return Value
None.
Parameters
area
A pointer to the memory area that needs to be set to binary zeros
size
The size in bytes of the memory area
Remarks
The bzero function sets to binary zeros, the memory pointed to by area for length size bytes.