move stuff aroundd

This commit is contained in:
nub31
2025-08-23 14:43:00 +02:00
parent e2dcdbeb53
commit 3b5e08951c
11 changed files with 43 additions and 32 deletions

3
src/kernel/mem.h Normal file
View File

@@ -0,0 +1,3 @@
void* memcpy(void* dest, const void* src, long n);
void* memset(void* dest, int val, long n);
long strlen(const char* str);