BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
c2b0401
Branches
Tags
master
mips_sys
fw
memcpy.h
added file headers
Stefan Schuermans
commited
c2b0401
at 2012-04-08 11:54:40
memcpy.h
Blame
History
Raw
/* MIPS I system * Copyright 2011-2012 Stefan Schuermans <stefan@schuermans.info> * Copyleft GNU public license V2 or later * http://www.gnu.org/copyleft/gpl.html */ #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