Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions
string.h File Reference

Go to the source code of this file.

Functions

voidmemset (void *__s, int __c, size_t __count)
 
voidmemcpy (void *__to, __const__ void *__from, size_t __n)
 
voidmemmove (void *__dest, __const__ void *__src, size_t __n)
 

Function Documentation

void* memcpy ( void __to,
__const__ void __from,
size_t  __n 
)
void* memmove ( void __dest,
__const__ void __src,
size_t  __n 
)
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.