bzero

Fills memory with the number of zeros specified by length.

Library:LibC
Classification:POSIX (Legacy)
Service:Memory Manipulation

Syntax

  #include <string.h> 
   
  void bzero (
     void     *s,
     size_t    length);
  

Parameters

s

(IN) Points to the object.

length

(IN) Specifies the number of zeros to copy.

Remarks

The bzero interface has been implemented as a macro. The memset function is the preferred interface.

See Also

memset