memset


memset

Set all bytes of a memory block to a given value

 #include <string.h> void *memset ( void *dest , int c , size_t n  ); 

The memset( ) function sets each byte in a block of n bytes to the value c, beginning at the address in dest. The return value is the same as the pointer argument dest.

Example

See the example for mbsinit( ) in this chapter.

See Also

wmemset( ), calloc( )



C(c) In a Nutshell
C in a Nutshell (In a Nutshell (OReilly))
ISBN: 0596006977
EAN: 2147483647
Year: 2006
Pages: 473

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net