ReactOS 0.4.16-dev-927-g467dec4
strnset_s.cpp
Go to the documentation of this file.
1//
2// strnset_s.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _strnset_s(), which sets at most the first 'count' characters of a
7// string to the given character and ensures that the resulting string is null-
8// terminated.
9//
11#include <string.h>
12
13
14
16 char* const destination,
17 size_t const size_in_elements,
18 int const value,
19 size_t const count
20 )
21{
22 return common_tcsnset_s(destination, size_in_elements, static_cast<char>(value), count);
23}
#define __cdecl
Definition: accygwin.h:79
size_t const size_in_elements
GLuint GLuint GLsizei count
Definition: gl.h:1545
_strnset_s
Definition: string.h:393
int errno_t
Definition: corecrt.h:615
Definition: pdh_main.c:96