bzero
Clears memory
#include <memory.h>
void *
bzero
(
u_char *p,
int n
)
Arguments
p
Pointer to a memory block
n
Number of bytes to clear
Return Value
p
, a pointer to the start of the memory block is returned.
Explanation
The first
n
bytes of the memory block pointed to by
p
are cleared.
See Also
bcopy()
,
bcmp()