blob: f94d17fe2b1dcf0814274a810b4d94bc0976fd22 (
plain)
1
2
3
4
5
6
7
|
/**
* @param[out] dest The memory area to copy to.
* @param[in] src The memory area to copy from.
* @param[in] n The number of bytes to copy
* @param[in,out] t The Test
*/
void memcpy(void *dest, const void *src, size_t n);
|