diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-03 20:38:28 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-03 20:38:28 +0530 |
commit | 70d67f088a2131466c22f6dadbe388a3ee1d5efb (patch) | |
tree | 819f93e0295e4e6682cea25e718cc998eeaaf216 /kernel/include/libk/string.h | |
parent | a52729a44eb1a42f10544e67eecc5cc85b9e99c2 (diff) |
libk: Start work on custom liballoc
Diffstat (limited to 'kernel/include/libk/string.h')
-rw-r--r-- | kernel/include/libk/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/include/libk/string.h b/kernel/include/libk/string.h index 490878f..8ea5b92 100644 --- a/kernel/include/libk/string.h +++ b/kernel/include/libk/string.h @@ -26,6 +26,7 @@ extern "C" { #endif size_t strlen(const char *str); +void *memset(void *s, int c, size_t n); #ifdef __cplusplus } |