Copies null characters into byte strings.
Format
#include <strings.h>
void bzero (void *string, size_t length);
Arguments
- string
- Specifies the byte string into which you want to copy null
characters.
- length
- Specifies the length (in bytes) of the string.
Description
This function copies null characters ('\0') into the byte
string pointed to by string for length bytes. If
length is 0 (zero), then no bytes are copied.
Previous Page | Next Page | Table of Contents | Index