aboutsummaryrefslogtreecommitdiff
path: root/sys/base/string/lower.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/string/lower.c')
-rw-r--r--sys/base/string/lower.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sys/base/string/lower.c b/sys/base/string/lower.c
deleted file mode 100644
index c6935f8..0000000
--- a/sys/base/string/lower.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "internal.h"
-
-// lower will force all runes in the string to be lowercase
-void
-str·lower(string s)
-{
- byte *b, *e;
- b = s;
- e = b + str·len(s);
- while (b++ != e)
- *b = tolower(*b);
-}