Reactos
1//
2// wcsset_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _wcsset_s(), which sets all of the characters of a null-terminated
7// string to the given character.
8//
9#include <corecrt_internal_string_templates.h>
10#include <string.h>
11
12extern "C" errno_t __cdecl _wcsset_s(
13 wchar_t* const destination,
14 size_t const size_in_elements,
15 wchar_t const value
16 )
17{
18 return common_tcsset_s(destination, size_in_elements, value);
19}