Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C Library Reference - <u>synopsis:</u> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <string.h>
    void bzero( void *dst, size_t n );

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

    Note that this function is similar to the ANSI  memset function (new
    code should use the ANSI function).

Returns:
    The bzero function has no return value.

Example:
    #include <string.h>

    void main()
      {
        char buffer[80];

        bzero( buffer, 80 );
      }

Classification:
    WATCOM

Systems:
    All, Netware

See Also:
    bcmp, bcopy, memset, strset

See Also: bcmp bcopy

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson