ReactOS 0.4.15-dev-7998-gdb93cb1
StrDup.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Tests for StrDupA/W
5 * COPYRIGHT: Copyright 2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6 */
7
8#include <apitest.h>
9#include <shlwapi.h>
10#include <versionhelpers.h>
11
12static void TEST_StrDupA(void)
13{
14 LPSTR ptrA;
15
16 ptrA = StrDupA(NULL);
17
19 ok_ptr(ptrA, NULL);
20 else
21 ok(ptrA && !*ptrA, "ptrA: '%s'\n", wine_dbgstr_a(ptrA));
22
23 if (ptrA)
24 LocalFree(ptrA);
25}
26
27static void TEST_StrDupW(void)
28{
29 LPWSTR ptrW;
30
31 ptrW = StrDupW(NULL);
32
34 ok_ptr(ptrW, NULL);
35 else
36 ok(ptrW && !*ptrW, "ptrW: '%s'\n", wine_dbgstr_w(ptrW));
37
38 if (ptrW)
39 LocalFree(ptrW);
40}
41
43{
46}
static void TEST_StrDupA(void)
Definition: StrDup.c:12
static void TEST_StrDupW(void)
Definition: StrDup.c:27
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
#define ok_ptr(expression, result)
Definition: atltest.h:108
#define NULL
Definition: types.h:112
LPSTR WINAPI StrDupA(LPCSTR lpszStr)
Definition: string.c:1064
LPWSTR WINAPI StrDupW(LPCWSTR lpszStr)
Definition: string.c:1093
HLOCAL NTAPI LocalFree(HLOCAL hMem)
Definition: heapmem.c:1594
#define wine_dbgstr_w
Definition: kernel32.h:34
const char int int int static __inline const char * wine_dbgstr_a(const char *s)
Definition: debug.h:187
#define StrDup
Definition: shlwapi.h:1533
VERSIONHELPERAPI IsWindowsXPOrGreater()
char * LPSTR
Definition: xmlstorage.h:182
WCHAR * LPWSTR
Definition: xmlstorage.h:184