mirror of
https://github.com/cybuzuma/aur_opencpn.git
synced 2025-06-10 23:10:14 -07:00
19 lines
741 B
Diff
19 lines
741 B
Diff
diff --git a/include/triangulate.h b/include/triangulate.h
|
|
index 7a12790..74239b2 100644
|
|
--- a/include/triangulate.h
|
|
+++ b/include/triangulate.h
|
|
@@ -245,4 +245,13 @@ extern int read_segments(char *, int *);
|
|
extern int math_logstar_n(int);
|
|
extern int math_N(int, int);
|
|
|
|
+extern inline int int_greater_than(ipoint_t *v0, ipoint_t *v1);
|
|
+extern inline int int_equal_to(ipoint_t *v0, ipoint_t *v1);
|
|
+extern inline int int_greater_than_equal_to(ipoint_t *v0, ipoint_t *v1);
|
|
+extern inline int int_less_than(ipoint_t *v0, ipoint_t *v1);
|
|
+#ifndef __clang__
|
|
+extern inline int int_locate_endpoint_a(ipoint_t *v, ipoint_t *vo, int r);
|
|
+#endif
|
|
+extern inline int int_locate_endpoint(ipoint_t *v, ipoint_t *vo, int r);
|
|
+
|
|
#endif /* triangulate_h */
|