Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <string.h> void *memset(void *s, int c, size_t n); |
|
|
Description |
s is a pointer to the memory area to be initialized with character c. c is the EBCDIC value of the character to be copied. n is an integer value that specifies the number of bytes in s to be initialized with character c. | ||
Return val. | Pointer to memory area s |
| |
Notes | This function is suitable for processing character arrays, which, in contrast to strings, need
| ||
See also |
|