[Previous] [Contents] [Next]

bzero()

Set the first part of an object to null bytes

Synopsis:

#include <strings.h>

void bzero( void *dst,
            size_t n );

Library:

libc

Description:

The bzero() function fills the first n bytes of the object pointed to by dst with zero (NUL) bytes.


Note: This function is similar to the ANSI memset() function. New code should use the ANSI function.

Examples:

#include <stdlib.h>
#include <string.h>

int main( void )
  {
    char buffer[80];

    bzero( buffer, 80 );
    return EXIT_SUCCESS;
  }

Classification:

Standard Unix

Safety:
Cancellation point No
Interrupt handler Yes
Signal handler Yes
Thread Yes

See also:

bcmp(), bcopy(), memset(), strset()


[Previous] [Contents] [Next]