BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
c89d999
Branches
Tags
master
mips_sys
fw
memcpy.h
implement menu on LCD
Stefan Schuermans
commited
c89d999
at 2012-04-04 22:26:27
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); /** * @brief set memory to fixed value * @param[in] dest pointer to destination buffer * @param[in] val fixed value to fill memory with * @param[in] sz size of memory to fill */ void memset(void *dest, int val, unsigned int sz); #endif // #ifdef MEMCPY_H