#include "memcopy.h"Include dependency graph for memcopy.c:
Go to the source code of this file.
Functions | |
| void * | memcopy (void *dst, const void *src, size_t count) |
| void | bcopy (const void *src0, void *dst0, int 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 54 of file memcopy.c. Referenced by bcopy(), and dns_client_callback().
00054 {
00055 register char *d=dst;
00056 register const char *s=src;
00057 ++count; /* this actually produces better code than using count-- */
00058 while (--count) {
00059 *d = *s;
00060 ++d; ++s;
00061 }
00062 return dst;
00063 }
|
1.3.4