aboutsummaryrefslogtreecommitdiff
path: root/src/tree_sitter/utf16.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2019-12-15 21:17:16 -0500
committerJames McCoy <jamessan@jamessan.com>2019-12-15 21:17:16 -0500
commit6566251d144d2c9c9e08e05c8c3a3fe9915a19b8 (patch)
tree980fd0c7287e295c8ac72858b0794f72224415e0 /src/tree_sitter/utf16.c
parent9c4223215f71e1212462ada4e698be1b31437dd9 (diff)
parent9f3d483c79f03c48239fdc82cc02e8685a03d22a (diff)
downloadrneovim-6566251d144d2c9c9e08e05c8c3a3fe9915a19b8.tar.gz
rneovim-6566251d144d2c9c9e08e05c8c3a3fe9915a19b8.tar.bz2
rneovim-6566251d144d2c9c9e08e05c8c3a3fe9915a19b8.zip
Merge remote-tracking branch 'upstream/master' into libcall
Diffstat (limited to 'src/tree_sitter/utf16.c')
-rw-r--r--src/tree_sitter/utf16.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/tree_sitter/utf16.c b/src/tree_sitter/utf16.c
new file mode 100644
index 0000000000..3956c01cb9
--- /dev/null
+++ b/src/tree_sitter/utf16.c
@@ -0,0 +1,33 @@
+#include "./utf16.h"
+
+utf8proc_ssize_t utf16_iterate(
+ const utf8proc_uint8_t *string,
+ utf8proc_ssize_t length,
+ utf8proc_int32_t *code_point
+) {
+ if (length < 2) {
+ *code_point = -1;
+ return 0;
+ }
+
+ uint16_t *units = (uint16_t *)string;
+ uint16_t unit = units[0];
+
+ if (unit < 0xd800 || unit >= 0xe000) {
+ *code_point = unit;
+ return 2;
+ }
+
+ if (unit < 0xdc00) {
+ if (length >= 4) {
+ uint16_t next_unit = units[1];
+ if (next_unit >= 0xdc00 && next_unit < 0xe000) {
+ *code_point = 0x10000 + ((unit - 0xd800) << 10) + (next_unit - 0xdc00);
+ return 4;
+ }
+ }
+ }
+
+ *code_point = -1;
+ return 2;
+}