[Linux manuál]

bzero: zapište nulové bajty

Originální popis anglicky: bzero - write zero bytes

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <strings.h>
 
void bzero(void *s, size_t n);

POPIS / INSTRUKCE

The bzero() function sets the first n bytes of the byte area starting at s to zero.

NÁVRATOVÁ HODNOTA

None.

ODPOVÍDAJÍCÍ

4.3BSD. This function is deprecated -- use memset in new programs.

SOUVISEJÍCÍ

memset(3), swab(3)
2002-12-31 Linux