XINU
|
メモリAの領域(source)からメモリBの領域(Destination)にN Byteコピーする。 More...
Go to the source code of this file.
Functions | |
void * | memcpy (void *s, const void *ct, int n) |
メモリAの領域(source)からメモリBの領域(Destination)にN Byteコピーする。 More... | |
メモリAの領域(source)からメモリBの領域(Destination)にN Byteコピーする。
Definition in file memcpy.c.
void* memcpy | ( | void * | s, |
const void * | ct, | ||
int | n | ||
) |
メモリAの領域(source)からメモリBの領域(Destination)にN Byteコピーする。
[in,out] | s | コピー先のアドレス(Destination address) |
[in] | ct | コピー元のアドレス(Source address) |
[in] | n | コピーサイズ(Byte) |
Definition at line 13 of file memcpy.c.
Referenced by addargs(), arp_in(), arp_resolve(), dhcp_bld_bootp_msg(), dhcp_bld_req(), dns_bldq(), dns_geta(), dns_getrname(), ethcontrol(), ethread(), ethwrite(), getlocalip(), icmp_mkpkt(), ip_send(), ipout(), raminit(), ramread(), ramwrite(), rdsread(), rdswrite(), udp_send(), and udp_sendto().