| Developer's Daily | Unix by Example |
| main | java | perl | unix | dev directory | web log |
|
bzero − write zeros to a byte string |
#include <string.h> void bzero(void *s, int n); |
|
The bzero() function sets the first n bytes of the byte string s to zero. |
|
The bzero() function returns no value. |
|
4.3BSD. This function is deprecated -- use memset in new programs. |
|
memset(3), swab(3) |