RTEMS 6.1-rc1
xil_mem.h
Go to the documentation of this file.
1/******************************************************************************/
7/****************************************************************************/
29#ifndef XIL_MEM_H /* prevent circular inclusions */
30#define XIL_MEM_H /* by using protection macros */
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/************************** Function Prototypes *****************************/
37
38void Xil_MemCpy(void* dst, const void* src, u32 cnt);
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* XIL_MEM_H */
void Xil_MemCpy(void *dst, const void *src, u32 cnt)
This function copies memory from once location to other.
Definition: xil_mem.c:47