#include <rtl_sched.h>Include dependency graph for bzero.h:
Go to the source code of this file.
Functions | |
| void | bzero (void *b, size_t length) |
|
||||||||||||
|
Definition at line 44 of file bzero.c.
00045 {
00046 register char *p;
00047
00048 for (p = b; length--;)
00049 *p++ = '\0';
00050 }
|
1.3.4