2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
FUNCTION
|
|
|
|
<<bzero>>---initialize memory to zero
|
|
|
|
|
|
|
|
INDEX
|
|
|
|
bzero
|
|
|
|
|
|
|
|
ANSI_SYNOPSIS
|
|
|
|
#include <string.h>
|
2002-05-24 02:46:04 +08:00
|
|
|
void bzero(void *<[b]>, size_t <[length]>);
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
TRAD_SYNOPSIS
|
|
|
|
#include <string.h>
|
|
|
|
void bzero(<[b]>, <[length]>)
|
2002-05-24 02:46:04 +08:00
|
|
|
void *<[b]>;
|
2000-02-18 03:39:52 +08:00
|
|
|
size_t <[length]>;
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
<<bzero>> initializes <[length]> bytes of memory, starting at address
|
|
|
|
<[b]>, to zero.
|
|
|
|
|
|
|
|
RETURNS
|
|
|
|
<<bzero>> does not return a result.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
<<bzero>> is in the Berkeley Software Distribution.
|
|
|
|
Neither ANSI C nor the System V Interface Definition (Issue 2) require
|
|
|
|
<<bzero>>.
|
|
|
|
|
|
|
|
<<bzero>> requires no supporting OS subroutines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
_VOID
|
|
|
|
_DEFUN (bzero, (b, length),
|
2002-05-24 02:46:04 +08:00
|
|
|
void *b _AND
|
2000-02-18 03:39:52 +08:00
|
|
|
size_t length)
|
|
|
|
{
|
2002-05-24 02:46:04 +08:00
|
|
|
char *ptr = (char *)b;
|
2000-02-18 03:39:52 +08:00
|
|
|
while (length--)
|
2002-05-24 02:46:04 +08:00
|
|
|
*ptr++ = 0;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|