From ce05175372a9ddca1a225db0765ace1127a39293 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Fri, 12 Nov 2021 09:22:01 -0800 Subject: chore: simplified organizational structure --- sys/base/string/upper.c | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 sys/base/string/upper.c (limited to 'sys/base/string/upper.c') diff --git a/sys/base/string/upper.c b/sys/base/string/upper.c deleted file mode 100644 index ab692c1..0000000 --- a/sys/base/string/upper.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "internal.h" - -// Upper will force all runes in the string to be uppercase. -void -strĀ·upper(string s) -{ - byte *b, *e; - b = s; - e = b + strĀ·len(s); - while (b++ != e) - *b = toupper(*b); -} -- cgit v1.2.1