First steps: getting memory map from Limine request and looking at it

This commit is contained in:
2025-12-30 21:33:38 +01:00
parent cf4915d9f4
commit 8f5e2eae3e
10 changed files with 113 additions and 7 deletions

6
src/string/string.c Normal file
View File

@@ -0,0 +1,6 @@
char* strcpy(char *dest, const char *src)
{
char *temp = dest;
while((*dest++ = *src++));
return temp;
}