bzero - memory operations (LEGACY)
The bzero() function shall place n zero-valued bytes in the area pointed to by s.
The bzero() function shall not return a value.
No errors are defined.
None.
The memset() function is preferred over this function.
For maximum portability, it is recommended to replace the function call to bzero() as follows:
#define bzero(b,len) (memset((b), '\0', (len)), (void) 0)
None.
This function may be withdrawn in a future version.
memset(), the Base Definitions volume of IEEE Std 1003.1-2001, <strings.h>
First released in Issue 4, Version 2.
Moved from X/OPEN UNIX extension to BASE.
This function is marked LEGACY.