3 <<bzero>>---initialize memory to zero
10 void bzero(void *<[b]>, size_t <[length]>);
14 void bzero(<[b]>, <[length]>)
19 <<bzero>> initializes <[length]> bytes of memory, starting at address
23 <<bzero>> does not return a result.
26 <<bzero>> is in the Berkeley Software Distribution.
27 Neither ANSI C nor the System V Interface Definition (Issue 2) require
30 <<bzero>> requires no supporting OS subroutines.
36 _DEFUN (bzero
, (b
, length
),
40 char *ptr
= (char *)b
;