From 29b56ef4e4113bcd091b19d6926f18814162ca53 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 26 Oct 2021 21:01:41 -0700 Subject: Feat(libunicode): Added an explicit unicode library Refactored code to pull out utf8 functions from base into a standalone library. Also left the required function inside arg.c so that code that calls ARG_BEGIN doesn't have to link to libunicode. --- sys/base/os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/base/os.c') diff --git a/sys/base/os.c b/sys/base/os.c index d5277b5..a76e183 100644 --- a/sys/base/os.c +++ b/sys/base/os.c @@ -25,6 +25,6 @@ os·basename(byte *path) { byte *sep; - sep = utf8·findrrune(path, os·sep()); + sep = strrchr(path, os·sep()); return (sep == nil) ? path : sep+1; } -- cgit v1.2.1