Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

wmemset - set first n wide characters in wide character string

&pagelevel(4)&pagelevel

Syntax

#include <wchar.h>

wchar_t *wmemset(wchar_t *ws, wchar_t *c, size_t n);

Description

wmemset() sets the first n wide characters in the wide character string ws to the value c.

Return val.

Pointer to ws.

Notes

This version of the C runtime system only supports 1-byte characters as wide character codes.

See also

memset()wmemcpy()wmemmove()