BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
00d70be
Branches
Tags
master
mips_sys
fw
memcpy.h
implemented IP + ICMP, fixed ARP (padding overwriting stack)
Stefan Schuermans
commited
00d70be
at 2012-03-24 13:58:46
memcpy.h
Blame
History
Raw
#ifndef MEMCPY_H #define MEMCPY_H /** * @brief copy memory * @param[in] dest pointer to destination buffer * @param[in] src pointer to source data * @param[in] sz size of data to copy */ void memcpy(void *dest, const void *src, unsigned int sz); #endif // #ifdef MEMCPY_H