aboutsummaryrefslogtreecommitdiff
path: root/lib/unicode/prop/uprop_is_wspace.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicode/prop/uprop_is_wspace.c')
-rw-r--r--lib/unicode/prop/uprop_is_wspace.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/unicode/prop/uprop_is_wspace.c b/lib/unicode/prop/uprop_is_wspace.c
new file mode 100644
index 0000000..3306eec
--- /dev/null
+++ b/lib/unicode/prop/uprop_is_wspace.c
@@ -0,0 +1,34 @@
+/* This file is autogenerated by gen/prop/bool-props; DO NOT EDIT. */
+
+#include "__bsearch.h"
+#include "bitset.h"
+#include "rune.h"
+#include "unicode/prop.h"
+
+/* clang-format off */
+
+static constexpr bitset(bs, LATIN1_MAX) = {
+ 0x00, 0x3E, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+};
+
+static const struct {
+ rune lo, hi;
+} lookup[] = {
+ {RUNE_C(0x001680), RUNE_C(0x001680)},
+ {RUNE_C(0x002000), RUNE_C(0x00200A)},
+ {RUNE_C(0x002028), RUNE_C(0x002029)},
+ {RUNE_C(0x00202F), RUNE_C(0x00202F)},
+ {RUNE_C(0x00205F), RUNE_C(0x00205F)},
+ {RUNE_C(0x003000), RUNE_C(0x003000)},
+};
+
+__MLIB_DEFINE_BSEARCH_CONTAINS(lookup)
+
+bool
+uprop_is_wspace(rune ch)
+{
+ return ch <= LATIN1_MAX ? TESTBIT(bs, ch) : mlib_lookup_contains(ch);
+}