summaryrefslogtreecommitdiff
path: root/kernel/lib/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/lib/string.cpp')
-rw-r--r--kernel/lib/string.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/kernel/lib/string.cpp b/kernel/lib/string.cpp
index 3bd60fa..1365147 100644
--- a/kernel/lib/string.cpp
+++ b/kernel/lib/string.cpp
@@ -75,4 +75,22 @@ char* strncpy(char* dest, const char* src, size_t n) {
return dest;
}
+void* memchr(const void* s, int c, size_t n) {
+ auto* p = static_cast<const uint8_t*>(s);
+ auto uc = static_cast<uint8_t>(c);
+ for (size_t i = 0; i < n; i++)
+ if (p[i] == uc) return const_cast<void*>(static_cast<const void*>(p + i));
+ return nullptr;
+}
+
+int strncmp(const char* s1, const char* s2, size_t n) {
+ const auto* u1 = reinterpret_cast<const uint8_t*>(s1);
+ const auto* u2 = reinterpret_cast<const uint8_t*>(s2);
+ for (size_t i = 0; i < n; i++) {
+ if (u1[i] != u2[i]) return static_cast<int>(u1[i]) - static_cast<int>(u2[i]);
+ if (u1[i] == 0) break;
+ }
+ return 0;
+}
+
} // extern "C"