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

6
string.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef INCLUDE_STRING_H
#define INCLUDE_STRING_H
int strlen(char* str);
#endif