From e10f9151dc62e33b8a818f43c8f404daf28e6012 Mon Sep 17 00:00:00 2001 From: Thomas Vigouroux Date: Fri, 17 Apr 2020 18:08:53 +0200 Subject: treesitter: remove utf8proc dependency --- src/tree_sitter/utf16.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/tree_sitter/utf16.h (limited to 'src/tree_sitter/utf16.h') diff --git a/src/tree_sitter/utf16.h b/src/tree_sitter/utf16.h deleted file mode 100644 index 32fd05e6db..0000000000 --- a/src/tree_sitter/utf16.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef TREE_SITTER_UTF16_H_ -#define TREE_SITTER_UTF16_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include "utf8proc.h" - -// Analogous to utf8proc's utf8proc_iterate function. Reads one code point from -// the given UTF16 string and stores it in the location pointed to by `code_point`. -// Returns the number of bytes in `string` that were read. -utf8proc_ssize_t utf16_iterate(const utf8proc_uint8_t *, utf8proc_ssize_t, utf8proc_int32_t *); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_UTF16_H_ -- cgit