summaryrefslogtreecommitdiffhomepage
path: root/include/unicode/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/unicode/types.h')
-rw-r--r--include/unicode/types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/unicode/types.h b/include/unicode/types.h
new file mode 100644
index 0000000..a4461d7
--- /dev/null
+++ b/include/unicode/types.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#ifdef __cpp_char8_t
+// char8_t available
+ typedef char8_t utf8_t;
+#else
+ typedef char utf8_t;
+#endif
+typedef char iso_t;
+