aboutsummaryrefslogtreecommitdiff
path: root/sys/libunicode/canfit.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-26 21:32:55 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-26 21:51:49 -0700
commit189b9e23edfe60b7e82c4c7b6071a3f98799653a (patch)
tree77c1f32726446deb298a0d2e6389358bfe16bd32 /sys/libunicode/canfit.c
parent29b56ef4e4113bcd091b19d6926f18814162ca53 (diff)
fix(unicode): renamed functions to be easier to understand their functions
Diffstat (limited to 'sys/libunicode/canfit.c')
-rw-r--r--sys/libunicode/canfit.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/libunicode/canfit.c b/sys/libunicode/canfit.c
new file mode 100644
index 0000000..d44c9e6
--- /dev/null
+++ b/sys/libunicode/canfit.c
@@ -0,0 +1,20 @@
+#include "internal.h"
+
+/* returns 1 if string of length n is long enough to be decoded */
+int
+utf8·canfit(byte* s, int n)
+{
+ int i;
+ rune c;
+
+ if(n <= 0) return 0;
+ c = *(ubyte*) s;
+ if(c < Tx) return 1;
+
+ for(i = 3; i < UTFmax + 1; i++){
+ if(c < Tbyte(i))
+ return n >= i - 1;
+ }
+
+ return n >= UTFmax;
+}