ReactOS 0.4.16-dev-937-g7afcd2a
wcsdup.cpp
Go to the documentation of this file.
1//
2// wcsdup.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _wcsdup() and _wcsdup_dbg(), which dynamically allocate a buffer and
7// duplicate a string into it.
8//
9// These functions allocate storage via malloc() or _malloc_dbg(). The caller
10// is responsible for free()ing the returned array. If the input string is null
11// or if sufficient memory could not be allocated, these functions return null.
12//
13#include <corecrt_internal.h>
14#include <malloc.h>
15#include <string.h>
16
17#ifdef _DEBUG
18
19extern "C" wchar_t* __cdecl _wcsdup(wchar_t const* const string)
20{
21 return _wcsdup_dbg(string, _NORMAL_BLOCK, nullptr, 0);
22}
23
24extern "C" wchar_t* __cdecl _wcsdup_dbg(
25 wchar_t const* const string,
26 int const block_use,
27 char const* const file_name,
28 int const line_number
29 )
30
31#else // ^^^ _DEBUG ^^^ // vvv !_DEBUG vvv //
32
33extern "C" wchar_t* __cdecl _wcsdup(
34 wchar_t const* string
35 )
36
37#endif // !_DEBUG
38{
39 if (string == nullptr)
40 return nullptr;
41
42 size_t const size_in_elements = wcslen(string) + 1;
43
44#ifdef _DEBUG
45 wchar_t* const memory = static_cast<wchar_t*>(_malloc_dbg(
46 size_in_elements * sizeof(wchar_t),
50#else
51 wchar_t* const memory = static_cast<wchar_t*>(malloc(
52 size_in_elements * sizeof(wchar_t)));
53#endif
54
55 if (memory == nullptr)
56 return nullptr;
57
59 return memory;
60}
#define __cdecl
Definition: accygwin.h:79
#define _ERRCHECK(e)
size_t const size_in_elements
#define _wcsdup_dbg(s, t, f, l)
Definition: crtdbg.h:224
#define _malloc_dbg(s, t, f, l)
Definition: crtdbg.h:204
#define _NORMAL_BLOCK
Definition: crtdbg.h:67
int const char const *const int const line_number
Definition: debug_heap.cpp:499
#define malloc
Definition: debug_ros.c:4
_Out_opt_ size_t *const Character const *const int const block_use
Definition: getenv.cpp:258
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define wcscpy_s(d, l, s)
Definition: utility.h:201
static char memory[1024 *256]
Definition: process.c:116
static LPCWSTR file_name
Definition: protocol.c:147
wchar_t *__cdecl _wcsdup(wchar_t const *string)
Definition: wcsdup.cpp:33