From 4058f9b1704322f8185136c2558c2ab96a4d835c Mon Sep 17 00:00:00 2001 From: mattkae Date: Sun, 23 Apr 2023 20:23:54 -0400 Subject: Initial commit with a working parser --- src/code_point.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/code_point.h (limited to 'src/code_point.h') 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 + +typedef wchar_t code_point_t; + +#endif -- cgit v1.2.1