bzero - memory operations (LEGACY)SYNOPSIS
DESCRIPTION
RETURN VALUEThe bzero() function shall place n zero-valued bytes in the area pointed to by s.
ERRORSThe bzero() function shall not return a value.
No errors are defined.
The following sections are informative.
EXAMPLESAPPLICATION USAGENone.
RATIONALEThe 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)
FUTURE DIRECTIONSNone.
SEE ALSOThis function may be withdrawn in a future version.
CHANGE HISTORYmemset(), the Base Definitions volume of IEEE Std 1003.1-2001, <strings.h>
Issue 5First released in Issue 4, Version 2.
Issue 6Moved from X/OPEN UNIX extension to BASE.
This function is marked LEGACY.
End of informative text.
UNIX ® is a registered Trademark of The Open Group.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4