aboutsummaryrefslogtreecommitdiff
path: root/src/tree_sitter/point.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-09-28 18:35:02 +0200
committerGitHub <noreply@github.com>2019-09-28 18:35:02 +0200
commite933426299b44db6715f6f61ab76aee57478110e (patch)
treeffca71781f4e06460fa9b98be68cb02a23d5e0bd /src/tree_sitter/point.h
parent0d9a3c86a1c7143187398e6cb6005ed06a5e2fde (diff)
parent9fa850991dbe8984996afdc149b5b32dc248197e (diff)
downloadrneovim-e933426299b44db6715f6f61ab76aee57478110e.tar.gz
rneovim-e933426299b44db6715f6f61ab76aee57478110e.tar.bz2
rneovim-e933426299b44db6715f6f61ab76aee57478110e.zip
Merge pull request #10124 from bfredl/tree-sitter-api
Tree-sitter step 1: vendor runtime lib + add lua API
Diffstat (limited to 'src/tree_sitter/point.h')
-rw-r--r--src/tree_sitter/point.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/tree_sitter/point.h b/src/tree_sitter/point.h
new file mode 100644
index 0000000000..4d0aed18ef
--- /dev/null
+++ b/src/tree_sitter/point.h
@@ -0,0 +1,53 @@
+#ifndef TREE_SITTER_POINT_H_
+#define TREE_SITTER_POINT_H_
+
+#include "tree_sitter/api.h"
+
+#define POINT_MAX ((TSPoint) {UINT32_MAX, UINT32_MAX})
+
+static inline TSPoint point__new(unsigned row, unsigned column) {
+ TSPoint result = {row, column};
+ return result;
+}
+
+static inline TSPoint point_add(TSPoint a, TSPoint b) {
+ if (b.row > 0)
+ return point__new(a.row + b.row, b.column);
+ else
+ return point__new(a.row, a.column + b.column);
+}
+
+static inline TSPoint point_sub(TSPoint a, TSPoint b) {
+ if (a.row > b.row)
+ return point__new(a.row - b.row, a.column);
+ else
+ return point__new(0, a.column - b.column);
+}
+
+static inline bool point_lte(TSPoint a, TSPoint b) {
+ return (a.row < b.row) || (a.row == b.row && a.column <= b.column);
+}
+
+static inline bool point_lt(TSPoint a, TSPoint b) {
+ return (a.row < b.row) || (a.row == b.row && a.column < b.column);
+}
+
+static inline bool point_eq(TSPoint a, TSPoint b) {
+ return a.row == b.row && a.column == b.column;
+}
+
+static inline TSPoint point_min(TSPoint a, TSPoint b) {
+ if (a.row < b.row || (a.row == b.row && a.column < b.column))
+ return a;
+ else
+ return b;
+}
+
+static inline TSPoint point_max(TSPoint a, TSPoint b) {
+ if (a.row > b.row || (a.row == b.row && a.column > b.column))
+ return a;
+ else
+ return b;
+}
+
+#endif