#include <ctype.h>
#include "lwip/netif.h"
#include "lwip/inet.h"
#include "lwip/sockets.h"
#include <sys/types.h>
#include <string.h>
Include dependency graph for tools.h:
Go to the source code of this file.
Functions | |
int | inet_aton (register const char *cp, struct in_addr *addr) |
void | bcopy (const void *src0, void *dst0, int length) |
void | bzero (void *b, size_t length) |
|
Definition at line 65 of file memcopy.c. References memcopy(). Referenced by rt_3com905cif_low_level_input(), rt_3com905cif_low_level_output(), rt_rtl8139if_low_level_input(), rt_rtl8139if_low_level_output(), and sys_thread_new().
00065 { 00066 memcopy(dst0,src0, length); 00067 } |
Here is the call graph for this function:
|
Definition at line 44 of file bzero.c.
00045 { 00046 register char *p; 00047 00048 for (p = b; length--;) 00049 *p++ = '\0'; 00050 } |
|
|