|
Linux Kernel
3.7.1
|
Go to the source code of this file.
Macros | |
| #define | __HAVE_ARCH_STRRCHR |
| #define | __HAVE_ARCH_STRCHR |
| #define | __HAVE_ARCH_MEMCPY |
| #define | __HAVE_ARCH_MEMMOVE |
| #define | __HAVE_ARCH_MEMCHR |
| #define | __HAVE_ARCH_MEMSET |
Functions | |
| char * | strrchr (const char *s, int c) |
| char * | strchr (const char *s, int c) |
| void * | memcpy (void *, const void *, __kernel_size_t) |
| void * | memmove (void *, const void *, __kernel_size_t) |
| void * | memchr (const void *, int, __kernel_size_t) |
| void * | memset (void *, int, __kernel_size_t) |
memcpy - Copy one area of memory to another : Where to copy to : Where to copy from : The size of the area.
You should not use this function to access IO space, use memcpy_toio() or memcpy_fromio() instead.
1.8.2