001
14.02.2003, 08:46 Uhr
~B.o.o.M
Gast
|
Header File: mem.h, string.h Category: Manipulation Routines
Syntax: #include <mem.h> void *memset(void *s, int c, size_t n); void *_wmemset(void *s, int c, size_t n);
Description: Sets n bytes of a block of memory to byte c. memset sets the first n bytes of the array s to the character c.
Return Value: memset returns s.
--------------------------------------------------------------------
Beispiel um das Array blup total mit 0x00 zu beschreiben: memset (blup, 0x00, sizeof(blup); |