(C) 1998 AROS - The Amiga Research OS
NAME
#include <string.h>
void bzero ()
SYNOPSIS
void * ptr
int len
FUNCTION
Write len zero bytes to ptr. If len is zero, does nothing.
INPUTS
ptr
The first byte of the area in memory to be cleared.
len
How many bytes to clear.
RESULT
EXAMPLE
SEE ALSO
NOTES
BUGS
INTERNALS
HISTORY
20.10.1998 hkiel
Amiga Research OS
01.01.1997 ldp
Changed clib to proto
12.12.1996 aros
Use memset() (faster code)
11.12.1996 aros
Corrected header
These functions use int instead of size_t
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
29.10.1996 aros
Added bzero function