Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
user_syms.c File Reference
#include <linux/types.h>
#include <linux/module.h>

Go to the source code of this file.

Macros

#define EXPORT_SYMBOL_PROTO(sym)
 

Functions

size_t strlen (const char *)
 
voidmemmove (void *, const void *, size_t)
 
voidmemset (void *, int, size_t)
 
int printf (const char *,...)
 
voidmemcpy (void *, const void *, size_t)
 
 EXPORT_SYMBOL (memcpy)
 
 EXPORT_SYMBOL (memmove)
 
 EXPORT_SYMBOL (memset)
 
 EXPORT_SYMBOL (printf)
 

Macro Definition Documentation

#define EXPORT_SYMBOL_PROTO (   sym)
Value:
int sym(void); \
EXPORT_SYMBOL(sym);

Definition at line 39 of file user_syms.c.

Function Documentation

EXPORT_SYMBOL ( memcpy  )
EXPORT_SYMBOL ( memmove  )
EXPORT_SYMBOL ( memset  )
EXPORT_SYMBOL ( printf  )
void* memcpy ( void dest,
const void src,
size_t  count 
)

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.

void* memmove ( void dest,
const void src,
size_t  count 
)

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.

void* memset ( void s,
int  c,
size_t  count 
)

memset - Fill a region of memory with the given value : Pointer to the start of the area. : The byte to fill the area with : The size of the area.

Do not use memset() to access IO space, use memset_io() instead.

Definition at line 116 of file string.c.

int printf ( const char ,
  ... 
)

Definition at line 323 of file stdio.c.

size_t strlen ( const char s)

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.