#include <linux/types.h>
#include <linux/module.h>
Go to the source code of this file.
#define EXPORT_SYMBOL_PROTO |
( |
|
sym | ) |
|
Value:int sym(void); \
EXPORT_SYMBOL(sym);
Definition at line 39 of file user_syms.c.
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.
Definition at line 151 of file memcpy.c.
memmove - Copy one area of memory to another : Where to copy to : Where to copy from : The size of the area.
Unlike memcpy(), memmove() copes with overlapping areas.
Definition at line 10 of file memmove.c.
strlen - Find the length of a string : The string to be sized
returns the length of
strlen - Find the length of a string : The string to be sized
Definition at line 59 of file string.c.