ReactOS 0.4.16-dev-927-g467dec4
strset_s.cpp
Go to the documentation of this file.
1//
2// strset_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _strset_s(), which sets all of the characters of a null-terminated
7// string to the given character.
8//
10#include <string.h>
11
12
13
15 char* const destination,
16 size_t const size_in_elements,
17 int const value
18 )
19{
20 return common_tcsset_s(destination, size_in_elements, static_cast<char>(value));
21}
#define __cdecl
Definition: accygwin.h:79
size_t const size_in_elements
errno_t __cdecl _strset_s(char *const destination, size_t const size_in_elements, int const value)
Definition: strset_s.cpp:14
int errno_t
Definition: corecrt.h:615
Definition: pdh_main.c:96