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/findrune.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 sys/libunicode/findrune.c (limited to 'sys/libunicode/findrune.c') diff --git a/sys/libunicode/findrune.c b/sys/libunicode/findrune.c deleted file mode 100644 index 97edc3c..0000000 --- a/sys/libunicode/findrune.c +++ /dev/null @@ -1,26 +0,0 @@ -#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; -} -- cgit v1.2.1