summaryrefslogtreecommitdiff
path: root/src/code_point.h
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-04-23 20:23:54 -0400
committermattkae <mattkae@protonmail.com>2023-04-23 20:23:54 -0400
commit4058f9b1704322f8185136c2558c2ab96a4d835c (patch)
treef764007c2cdd0f41372d66dcf02ccde26509b839 /src/code_point.h
Initial commit with a working parser
Diffstat (limited to 'src/code_point.h')
-rw-r--r--src/code_point.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/code_point.h b/src/code_point.h
new file mode 100644
index 0000000..dcfcd32
--- /dev/null
+++ b/src/code_point.h
@@ -0,0 +1,8 @@
+#ifndef CODE_POINT_H
+#define CODE_POINT_H
+
+#include <cstdint>
+
+typedef wchar_t code_point_t;
+
+#endif