summaryrefslogtreecommitdiff
path: root/wchar.c
blob: d6e59eaa39617066e4f013ff0f7d988134192859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#if defined __STDC_VERSION__
#include <wchar.h>
#include "test.h"

void test_wchar_h(void)
{
	wchar_t wchar;
	size_t size;
	mbstate_t mbstate;
	wint_t wint;
	struct tm *tm;

	testing_header("wchar.h");

	test_true(NULL == 0);
	test_min(WCHAR_MIN, 0);
	test_min(WCHAR_MAX, 0);
	test_defined(WEOF);

	testing_end();
}

#else
void test_wchar_h(void)
{
}
#endif