Add: basic framebuffer write call

This commit is contained in:
xamidev
2024-05-19 14:31:10 +02:00
parent 566860c6ea
commit 5cd61cf95c
11 changed files with 82 additions and 67 deletions

9
string.c Normal file
View File

@@ -0,0 +1,9 @@
int strlen(char* str)
{
int len = 0;
while (*str++)
{
len++;
}
return len;
}