1
/* Portable version of bzero for systems without it.
2
This function is in the public domain. */
6
bzero -- zero the contents of a specified memory region
9
void bzero (char *to, int count)
12
Zero COUNT bytes of memory pointed to by TO.
15
Significant speed enhancements may be made in some environments
16
by zeroing more than a single byte at a time, or by unrolling the