aboutsummaryrefslogtreecommitdiff
path: root/sys/libunicode/findrune.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-26 21:01:41 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-26 21:01:41 -0700
commit29b56ef4e4113bcd091b19d6926f18814162ca53 (patch)
treea4888a16927576592af13928bb805f1f2b1159d6 /sys/libunicode/findrune.c
parente34a4791b72e426b02f33496fe03be1ad81819a6 (diff)
Feat(libunicode): Added an explicit unicode library
Refactored code to pull out utf8 functions from base into a standalone library. Also left the required function inside arg.c so that code that calls ARG_BEGIN doesn't have to link to libunicode.
Diffstat (limited to 'sys/libunicode/findrune.c')
-rw-r--r--sys/libunicode/findrune.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sys/libunicode/findrune.c b/sys/libunicode/findrune.c
new file mode 100644
index 0000000..97edc3c
--- /dev/null
+++ b/sys/libunicode/findrune.c
@@ -0,0 +1,26 @@
+#include "internal.h"
+
+byte*
+utf8·findrune(byte* s, long c)
+{
+ long c1;
+ rune r;
+ int n;
+
+ if (c < RuneSync) return strchr(s, c);
+
+ for (;;) {
+ c1 = *(ubyte*)s;
+ if (c1 < RuneSelf) {
+ if (c1 == 0) return nil;
+ if (c1 == c) return s;
+ s++;
+ continue;
+ }
+ n = utf8·bytetorune(&r, s);
+ if (r == c) return s;
+ s += n;
+ }
+
+ return nil;
+}