From d2df6a9c064965b62c8b966bb93a81b663b35395 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sun, 14 Nov 2021 18:04:38 +0100 Subject: shared: move the str* implementations to shared/mem.c --- src/init/stdlib.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/init/stdlib.c') diff --git a/src/init/stdlib.c b/src/init/stdlib.c index c83440f..18da3da 100644 --- a/src/init/stdlib.c +++ b/src/init/stdlib.c @@ -5,23 +5,6 @@ int __tty_fd; -int strcmp(const char *s1, const char *s2) { - while (*s1) { - if (*s1 != *s2) { - if (*s1 < *s2) return -1; - else return 1; - } - s1++; s2++; - } - return 0; -} - -size_t strlen(const char *s) { - size_t c = 0; - while (*s++) c++; - return c; -} - int printf(const char *fmt, ...) { const char *seg = fmt; // beginning of the current segment int total = 0; -- cgit v1.2.3