Main Page | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

bzero.c File Reference

#include <string.h>

Include dependency graph for bzero.c:

Go to the source code of this file.

Functions

void bzero (void *b, size_t length)


Function Documentation

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 }


Generated on Wed Jan 14 12:59:02 2004 for RTL-lwIP-0.4 by doxygen 1.3.4