summaryrefslogtreecommitdiff
path: root/uchar.c
blob: 80e9234975a797f7d6a75f38cbbad627d315c9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__
#include <uchar.h>
#include "test.h"

void test_uchar_h(void)
{
	mbstate_t mbstate;
	size_t size;
	char16_t char16;
	char32_t char32;

	testing_header("uchar.h");

	/* TODO */

	testing_end();
}

#else
void test_uchar_h(void)
{
}
#endif