summaryrefslogtreecommitdiff
path: root/uchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'uchar.c')
-rw-r--r--uchar.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/uchar.c b/uchar.c
new file mode 100644
index 0000000..80e9234
--- /dev/null
+++ b/uchar.c
@@ -0,0 +1,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