From 189b9e23edfe60b7e82c4c7b6071a3f98799653a Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 26 Oct 2021 21:32:55 -0700 Subject: fix(unicode): renamed functions to be easier to understand their functions --- sys/libunicode/fullrune.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 sys/libunicode/fullrune.c (limited to 'sys/libunicode/fullrune.c') diff --git a/sys/libunicode/fullrune.c b/sys/libunicode/fullrune.c deleted file mode 100644 index e5cf314..0000000 --- a/sys/libunicode/fullrune.c +++ /dev/null @@ -1,18 +0,0 @@ -#include "internal.h" - -int -utf8·fullrune(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; -} -- cgit v1.2.1